Skip to content

Installation

Terminal window
curl -fsSL https://tryaura.sh/install | sh

This detects your platform, downloads the matching binary from GitHub Releases, verifies its SHA-256 checksum against the published SHA256SUMS, and installs to ~/.aura/bin.

Reading a script before running it is a reasonable habit, and the install script is written to be read:

Terminal window
curl -fsSL https://tryaura.sh/install -o install.sh
less install.sh
sh install.sh

Both are environment variables:

Variable Default Purpose
AURA_INSTALL_DIR ~/.aura/bin Where the binary is written.
AURA_VERSION latest release Install a specific tag, for example v0.2.0.
Terminal window
AURA_INSTALL_DIR=/usr/local/bin AURA_VERSION=v0.2.0 curl -fsSL https://tryaura.sh/install | sh

If you already have Node.js 24 or newer, this is the shorter path and keeps Aura updatable alongside your other global tooling:

Terminal window
npm install -g @tryaura/aura-cli

Every release publishes archives and a SHA256SUMS file for:

  • darwin-arm64, darwin-x64
  • linux-arm64, linux-x64

Download from the releases page and verify:

Terminal window
shasum -a 256 -c SHA256SUMS --ignore-missing
Terminal window
aura --version

If your shell cannot find aura, add the install directory to your PATH:

Terminal window
export PATH="$HOME/.aura/bin:$PATH"

The install script prints the exact line to add for your shell.