Documentation Index
Fetch the complete documentation index at: https://docs.plerion.com/llms.txt
Use this file to discover all available pages before exploring further.
With the Plerion CLI, you can interact with the Plerion platform from your terminal. Pre-built binaries are available for all major platforms.
Install script (recommended)
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:
| Platform | Binary |
|---|
| macOS (Apple Silicon) | plerion-macos-arm64 |
| macOS (Intel) | plerion-macos-x86_64 |
| Linux x86_64 | plerion-linux-x86_64 |
| Linux ARM64 | plerion-linux-arm64 |
| Windows x64 | plerion-windows-x86_64.exe |
macOS (Apple Silicon)
macOS (Intel)
Linux x86_64
Linux ARM64
Windows
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
curl -L -o plerion https://github.com/plerionhq/plerion-cli/releases/latest/download/plerion-macos-x86_64
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
curl -L -o plerion https://github.com/plerionhq/plerion-cli/releases/latest/download/plerion-linux-x86_64
chmod +x plerion
sudo mv plerion /usr/local/bin/
curl -L -o plerion https://github.com/plerionhq/plerion-cli/releases/latest/download/plerion-linux-arm64
chmod +x plerion
sudo mv plerion /usr/local/bin/
Download plerion-windows-x86_64.exe from the releases page and add it to your PATH.
Verify the installation:
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/