Install NextViper
Install the complete NextViper 1.0 toolchain — including the native AOT compiler, bytecode VM, Vulkan GPU acceleration engine, standard library, and language server.
Method 1: Install via npm (Cross-Platform Global CLI)
Recommended for all platforms: Linux, macOS, and Windows with Node.js 16+.
npm install -g nextviperMethod 2: Universal POSIX Installer (Linux & macOS)
Detects architecture, validates SHA-256 integrity, and configures PATH.
curl -fsSL https://nextviper.nuratix.com/install.sh | shPlatform-Specific Instructions
Linux (x86_64 & ARM64)
Install via curl script, global npm package, or download standalone static binaries directly.
# Direct Download
tar -xzf nextviper-*-linux-x86_64.tar.gz
sudo cp nextviper /usr/local/bin/
macOS (Apple Silicon & Intel)
Native support for Apple Silicon (M1/M2/M3/M4) and Intel Macs via universal installer or npm.
# Apple Silicon / Intel
curl -fsSL https://nextviper.nuratix.com/install.sh | sh
Windows (x86_64)
Install globally with npm/Node.js or compile using CMake and MSVC / MinGW-w64 toolchains.
# Windows PowerShell / CMD
npm install -g nextviper
Method 3: Build from Source (C++20 Toolchain)
Clone the official repository and compile the native toolchain with GCC 11+, Clang 13+, or MSVC:
git clone https://github.com/nuratix/nextviper.git && cd nextviper && make -j$(nproc) && ./scripts/install.shVerify Your Installation
Run the verification command in your terminal to confirm the toolchain is installed and operational:
$ nextviper --version
nextviper 1.0.0 (x86_64-linux-gnu, release build)
$ nextviper -e 'print("Hello, NextViper!")'
Hello, NextViper!

