Install vulkro-live
One command installs the CLI. No package manager, no account, no API key:
curl -fsSL https://dist.vulkro.com/install-live.sh | bash
The installer detects your platform, downloads a prebuilt
vulkro-live binary from the Vulkro CDN, verifies its SHA-256
checksum, and installs it to /usr/local/bin if writable, otherwise
~/.local/bin. It is the same CDN and installer scheme the vulkro
and vulkro-sf binaries use.
Platforms
| Platform | Target | Delivery |
|---|---|---|
| macOS Apple Silicon | mac-arm64 | tar.gz via installer |
| macOS Intel | mac-x64 | tar.gz via installer |
| Linux x86_64 | linux-x64 | tar.gz via installer |
| Linux arm64 | linux-arm64 | tar.gz via installer |
| Windows x64 | windows-x64 | download the .zip from dist.vulkro.com/releases/<version>/ and unzip manually |
Installer options
The installer reads two environment variables:
| Variable | Effect |
|---|---|
VULKRO_LIVE_VERSION | Pin a specific release tag (default: latest, from releases/latest-live.json) |
VULKRO_LIVE_BIN_DIR | Install destination (default: /usr/local/bin if writable, else ~/.local/bin) |
VULKRO_LIVE_BIN_DIR="$HOME/bin" \
curl -fsSL https://dist.vulkro.com/install-live.sh | bash
Build from source
The tools are open source. With a recent stable Rust toolchain:
git clone https://github.com/vulkro/vulkro-labs
cd vulkro-labs
cargo build --release # produces ./target/release/vulkro-live
Check the install
vulkro-live --version
vulkro-live --help
Every subcommand documents its flags, data sources, and exit codes in
vulkro-live <command> --help. Next: verify, the
command most people run first.