Installation

Install atra on your system using Homebrew, npm, curl, or wget.

Homebrew (macOS)

One-Line Install

The fastest way to install atra. This command adds the Atrahasis tap and installs the binary in one step.

brew install atrahasisdev/tap/atra

Step-by-Step Install

If you prefer, you can add the tap first and install separately.

# Add the Atrahasis tap

brew tap atrahasisdev/tap

# Install atra

brew install atra

Verify Installation

After installation, verify that atra is available.

atra --version

# atra 1.0.0

npm

Global Install

Install atra globally via npm. Requires Node.js.

npm install -g @atrahasis/cli

Run Without Installing

Use npx to run atra without a global install. Great for CI/CD pipelines.

npx --yes @atrahasis/cli GET https://api.example.com

curl / wget

curl

Download and install the latest binary with a single command.

curl -sSL https://cli.atrahasis.dev | sh

wget

wget -qO- https://cli.atrahasis.dev | sh

PowerShell (Windows)

One-Line Install

Install atra on Windows using PowerShell. No admin rights required.

irm https://cli.atrahasis.dev | iex

Upgrading

Upgrade via Homebrew

brew upgrade atra

Upgrade via atra

atra has a built-in update command that downloads and replaces the binary in place.

atra update

# Updating atra: v1.0.0 → v1.1.0

# Updated successfully!

Platform Support

atra is available on macOS, Linux, and Windows via Homebrew, npm, curl/wget, and PowerShell.

macOS
Available
Windows
Available
Linux
Available