Ara ships as a single self-contained binary namedDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/ara-home/ara/llms.txt
Use this file to discover all available pages before exploring further.
ara. There are no runtime dependencies, no Node.js version to manage, and no global node_modules to worry about. The recommended way to get it is to download a pre-built release from GitHub. If you prefer to build from source, that works too — you just need a Rust toolchain.
The seccomp-BPF sandbox used by
ara run is Linux x86_64 only. On macOS and Windows, ara run executes your scripts without syscall restrictions — all other commands (install, add, analyze, x, gc) work identically across all three platforms.Download from GitHub Releases
Pre-built binaries are published to github.com/ara-home/ara/releases for every tagged version. The current release is v0.11.0. Five targets are available:| Target | Platform |
|---|---|
x86_64-unknown-linux-gnu | Linux x86_64 (glibc) |
x86_64-unknown-linux-musl | Linux x86_64 (musl / Alpine) |
aarch64-apple-darwin | macOS Apple Silicon |
x86_64-apple-darwin | macOS Intel |
x86_64-pc-windows-msvc | Windows x86_64 |
Linux (x86_64)
Download the binary archive
Go to the latest release page and download the archive for your Linux variant:
ara-x86_64-unknown-linux-gnu.tar.gz— for standard distros (Ubuntu, Debian, Fedora, Arch)ara-x86_64-unknown-linux-musl.tar.gz— for Alpine Linux or any musl-based system
macOS
Download the binary archive
From the latest release page, download the archive that matches your Mac:
ara-aarch64-apple-darwin.tar.gz— Apple Silicon (M1, M2, M3, M4)ara-x86_64-apple-darwin.tar.gz— Intel Mac
Allow the binary on first run (Gatekeeper)
macOS may quarantine the downloaded binary. To clear the quarantine flag:
Windows (x86_64)
Download the binary archive
From the latest release page, download:
ara-x86_64-pc-windows-msvc.zip
Add the binary to your PATH
Move
ara.exe to a directory that is already on your PATH, such as C:\Windows\System32, or add its current directory to your user PATH via System Properties → Environment Variables.Build from source
Building from source requires a working Rust toolchain. If you do not have Rust installed, get it from rustup.rs.Build and install the binary
The Cargo manifest for the
ara binary lives in src/Cargo.toml. Install it directly to your Cargo bin directory (~/.cargo/bin by default, which should already be on your PATH if you installed Rust via rustup):Shell completion (optional)
Ara uses clap for its CLI, which can generate shell completions. Completion generation is not yet exposed as a built-in subcommand, but it is on the roadmap.Next steps
Onceara --version prints successfully, head over to the Quickstart to run your first secure install.