Install the A.R.C. CLI
The A.R.C. CLI is a single Go binary with zero external dependencies. It works on macOS, Linux, and Windows.
Quick Install (Recommended)
macOS / Linux
curl -sSL https://raw.githubusercontent.com/arc-framework/arc-cli/main/install.sh | bash
Windows (PowerShell as Administrator)
irm https://raw.githubusercontent.com/arc-framework/arc-cli/main/install.ps1 | iex
Manual Installation
- Download the latest release from GitHub Releases
- Extract and move to your PATH:
tar -xzf arc-cli_*.tar.gz
sudo mv arc /usr/local/bin/
- Verify the installation:
arc --version
Verify Installation
Run these commands to confirm everything is working:
# Check the CLI version
arc --version
# View system information
arc info
# See all available commands
arc --help
You should see the A.R.C. banner and version information.
Next Steps
Now that the CLI is installed, create your first workspace →