Skip to main content
With the Plerion CLI, you can interact with the Plerion platform from your terminal. Pre-built binaries are available for all major platforms.
The install script auto-detects your OS and architecture, downloads the correct binary, and places it in /usr/local/bin:
curl -fsSL https://raw.githubusercontent.com/plerionhq/plerion-cli/main/install.sh | sh
To install a specific version or to a custom directory:
VERSION=v0.1.6 INSTALL_DIR=~/.local/bin curl -fsSL https://raw.githubusercontent.com/plerionhq/plerion-cli/main/install.sh | sh

From GitHub releases

Download the latest binary for your platform from Releases:
PlatformBinary
macOS (Apple Silicon)plerion-macos-arm64
macOS (Intel)plerion-macos-x86_64
Linux x86_64plerion-linux-x86_64
Linux ARM64plerion-linux-arm64
Windows x64plerion-windows-x86_64.exe
curl -L -o plerion https://github.com/plerionhq/plerion-cli/releases/latest/download/plerion-macos-arm64
chmod +x plerion
sudo mv plerion /usr/local/bin/
macOS may block unsigned binaries downloaded outside the App Store. If you see a Gatekeeper warning, remove the quarantine attribute:
xattr -d com.apple.quarantine /usr/local/bin/plerion
Verify the installation:
plerion --help

From source

Requires Rust 1.70+ and Cargo:
git clone git@github.com:plerionhq/plerion-cli.git
cd plerion-cli
cargo build --release
cp target/release/plerion /usr/local/bin/