Skip to main content

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

PlatformTargetDelivery
macOS Apple Siliconmac-arm64tar.gz via installer
macOS Intelmac-x64tar.gz via installer
Linux x86_64linux-x64tar.gz via installer
Linux arm64linux-arm64tar.gz via installer
Windows x64windows-x64download the .zip from dist.vulkro.com/releases/<version>/ and unzip manually

Installer options

The installer reads two environment variables:

VariableEffect
VULKRO_LIVE_VERSIONPin a specific release tag (default: latest, from releases/latest-live.json)
VULKRO_LIVE_BIN_DIRInstall 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.