Skip to main content

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.

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

  1. Download the latest release from GitHub Releases
  2. Extract and move to your PATH:
tar -xzf arc-cli_*.tar.gz
sudo mv arc /usr/local/bin/
  1. 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 →