Downloads

One line to install — we'll highlight the one for your system.

macOS · Linux · WSL · Git Bash
curl -fsSL https://revoq.pages.dev/install.sh | sh
Windows · PowerShell
irm https://revoq.pages.dev/install.ps1 | iex

The install script grabs the right prebuilt binary for your machine, drops it in ~/.local/bin (%LOCALAPPDATA%\revoq\bin on Windows), and runs revoq doctor to check your toolchain.

Piping a script into your shell is convenient, but you’re trusting it — read it first if you like (install.sh, install.ps1). Want a specific version? Set REVOQ_VERSION=v0.7.2 before running. Want it somewhere else? Set REVOQ_BIN_DIR.

Build from source

Prefer to build it yourself? Nothing to trust but the code:

cargo build --release
# binary at target/release/revoq

What you’ll need

Either way, revoq leans on tools you probably already have: clang/clang++ and git on your PATH, an archiver (ar on Unix; llvm-ar or lib.exe on Windows), and a fetch tool (curl/wget on Unix, PowerShell on Windows). Run revoq doctor any time — it checks the whole toolchain end to end, right down to a real probe compile against <stdio.h>.