CLI Installation â
Pre-built Binaries (Recommended) â
Download the latest release from GitHub for your platform:
macOS â
bash
# Apple Silicon (M1/M2/M3)
curl -fsSL https://github.com/loonghao/agentverse/releases/latest/download/agentverse-aarch64-apple-darwin.tar.gz | tar -xz
sudo mv agentverse /usr/local/bin/
# Intel
curl -fsSL https://github.com/loonghao/agentverse/releases/latest/download/agentverse-x86_64-apple-darwin.tar.gz | tar -xz
sudo mv agentverse /usr/local/bin/Linux â
bash
# x86_64 (most servers and desktops)
curl -fsSL https://github.com/loonghao/agentverse/releases/latest/download/agentverse-x86_64-unknown-linux-gnu.tar.gz | tar -xz
sudo mv agentverse /usr/local/bin/
# Verify
agentverse --versionWindows (PowerShell) â
powershell
# Download and extract
irm https://github.com/loonghao/agentverse/releases/latest/download/agentverse-x86_64-pc-windows-msvc.zip -OutFile agentverse.zip
Expand-Archive agentverse.zip -DestinationPath "$env:LOCALAPPDATA\agentverse"
# Add to PATH (run once)
$env:PATH += ";$env:LOCALAPPDATA\agentverse"
[Environment]::SetEnvironmentVariable("PATH", $env:PATH, "User")
# Verify
agentverse --versionInstall Script â
bash
# macOS / Linux one-liner (auto-detects architecture)
curl -fsSL https://github.com/loonghao/agentverse/raw/main/install.sh | bashpowershell
# Windows PowerShell one-liner
irm https://github.com/loonghao/agentverse/raw/main/install.ps1 | iexBuild from Source â
Requires Rust 1.75+:
bash
git clone https://github.com/loonghao/agentverse.git
cd agentverse
cargo build --release -p agentverse
# Copy binary
sudo cp target/release/agentverse /usr/local/bin/Or install directly from git:
bash
cargo install --git https://github.com/loonghao/agentverse agentverseVerify Installation â
bash
agentverse --version
# agentverse x.y.z
agentverse --help