Installation¶
Quick Install (Recommended)¶
Download and install the pre-built binary with a single command:
This automatically:
- Detects your platform (Linux/macOS, x86_64/ARM64)
- Downloads the latest release
- Installs to
~/.local/bin/ca
Alternative Installation Methods¶
Build from Source¶
Requires Rust (latest stable):
# Clone the repository
git clone git@github.com:jeremyplichta/cloud-agent.git
cd cloud-agent
# Build release binary
cargo build --release
# Install to PATH
cp target/release/ca ~/.local/bin/
Download Binary Manually¶
Download from GitHub Releases:
| Platform | Download |
|---|---|
| Linux (Intel/AMD) | ca-linux-x86_64.tar.gz |
| Linux (Static) | ca-linux-x86_64-musl.tar.gz |
| macOS (Intel) | ca-macos-x86_64.tar.gz |
| macOS (Apple Silicon) | ca-macos-aarch64.tar.gz |
# Example: macOS Apple Silicon
curl -LO https://github.com/jeremyplichta/cloud-agent/releases/latest/download/ca-macos-aarch64.tar.gz
tar -xzf ca-macos-aarch64.tar.gz
mv ca ~/.local/bin/
chmod +x ~/.local/bin/ca
Verify Installation¶
Add to PATH¶
If ~/.local/bin is not in your PATH, add it:
Uninstall¶
Or use the uninstall script: