Installation

Install the Atlas CLI on macOS, Linux, or Windows

Install

$curl -fsSL https://cdn.youratlas.com/atlas-cli/install.sh | bash

The installer automatically:

  • Detects your operating system and CPU architecture
  • Downloads the correct binary
  • Verifies the SHA-256 checksum
  • Installs to ~/.atlas/bin/atlas (macOS/Linux) or %USERPROFILE%\.atlas\bin\atlas.exe (Windows)
  • Adds to your PATH

Supported Platforms

PlatformArchitectureBinary
macOSApple Silicon (M1/M2/M3/M4)atlas-darwin-arm64
macOSIntelatlas-darwin-x64
Linuxx64atlas-linux-x64
LinuxARM64atlas-linux-arm64
Windowsx64atlas-windows-x64.exe
WindowsARM64atlas-windows-arm64.exe

Manual Install

If you prefer to install manually:

$# Download the binary for your platform
$curl -fsSL https://cdn.youratlas.com/atlas-cli/releases/v1.0.6/atlas-darwin-arm64 -o atlas
$
$# Make it executable
$chmod +x atlas
$
$# Move to your PATH
$sudo mv atlas /usr/local/bin/atlas
$
$# Verify
$atlas --version

Replace the URL with the correct binary for your platform.

Updating

Run the install command again to update to the latest version:

$curl -fsSL https://cdn.youratlas.com/atlas-cli/install.sh | bash

Verify Installation

$atlas --version

You should see something like:

atlas version v1.0.6

Uninstall

$rm -rf ~/.atlas

Then remove the PATH line from your ~/.zshrc, ~/.bashrc, or ~/.bash_profile.