Skip to main content

Installation

The Accomplish CLI is distributed as pre-built binaries for all major platforms. Choose your preferred installation method below.

If you're using Windows, please refer to the manual installation section below.

curl -sSL https://accomplish.dev/install.sh | sh

This script will:

  • Detect your platform automatically
  • Download the appropriate binary
  • Install to /usr/local/bin/acc
  • Make the binary executable
  • Verify the installation

Manual Installation

macOS

Download the appropriate binary for your Mac:

# Intel Macs
curl -sSL https://accomplish.dev/releases/acc-x86_64-apple-darwin -o acc

# Apple Silicon Macs (M1/M2/M3)
curl -sSL https://accomplish.dev/releases/acc-aarch64-apple-darwin -o acc

Install to your PATH:

# Make executable
chmod +x acc

# Move to system PATH
sudo mv acc /usr/local/bin/

# Verify installation
acc version

Linux

Download the binary:

curl -sSL https://accomplish.dev/releases/acc-x86_64-unknown-linux-gnu -o acc

Install to your PATH:

# Make executable
chmod +x acc

# Move to system PATH
sudo mv acc /usr/local/bin/

# Verify installation
acc version

Windows

Download the Windows executable:

curl -sSL https://accomplish.dev/releases/acc-x86_64-pc-windows-msvc.exe -o acc.exe

Or using PowerShell:

Invoke-WebRequest -Uri "https://accomplish.dev/releases/acc-x86_64-pc-windows-msvc.exe" -OutFile "acc.exe"

Install to your PATH:

  1. Option 1 - User Directory (Recommended):

    # Create the accomplish directory
    mkdir "%LOCALAPPDATA%\Programs\accomplish"

    # Move the executable
    move acc.exe "%LOCALAPPDATA%\Programs\accomplish\"

    Add to PATH manually:

    1. Press Win + R, type SystemPropertiesAdvanced, press Enter
    2. Click "Environment Variables"
    3. Under "User variables", select "PATH" and click "Edit"
    4. Click "New" and add: %LOCALAPPDATA%\Programs\accomplish
    5. Click "OK" on all dialogs
    6. Restart your terminal
  2. Option 2 - System-wide (Requires Administrator):

    # Create accomplish directory and move executable
    mkdir "C:\Program Files\accomplish"
    move acc.exe "C:\Program Files\accomplish\"

    Add to system PATH using PowerShell (run as Administrator):

    # Add to system PATH permanently
    $systemPath = [Environment]::GetEnvironmentVariable("PATH", "Machine")
    [Environment]::SetEnvironmentVariable("PATH", "$systemPath;C:\Program Files\accomplish", "Machine")

    Restart your terminal to apply the changes.

Verify installation:

# Check version
acc version

# View help
acc --help

Verification

Verify your installation works correctly:

# Check version
acc version

# View help
acc --help

# Check authentication status
acc status

Updating

To update to the latest version, simply run the install script again:

curl -sSL https://accomplish.dev/install.sh | sh

The script will detect and replace your existing installation.