Installation
Athyr is distributed as a single binary with no external dependencies. Choose your preferred installation method below.
Quick Install (Recommended)
The fastest way to install Athyr is using our install script:
curl -sSL https://athyr.tech/install.sh | sh
This will automatically detect your operating system and architecture, download the appropriate binary, and install it to /usr/local/bin.
Manual Installation
macOS
Using Homebrew:
brew install athyr-tech/tap/athyr
Or download directly:
# Apple Silicon (M1/M2/M3)
curl -LO https://github.com/athyr-tech/athyr/releases/latest/download/athyr-darwin-arm64.tar.gz
# Intel
curl -LO https://github.com/athyr-tech/athyr/releases/latest/download/athyr-darwin-amd64.tar.gz
tar xzf athyr-darwin-*.tar.gz
sudo mv athyr /usr/local/bin/
Linux
# AMD64
curl -LO https://github.com/athyr-tech/athyr/releases/latest/download/athyr-linux-amd64.tar.gz
# ARM64
curl -LO https://github.com/athyr-tech/athyr/releases/latest/download/athyr-linux-arm64.tar.gz
tar xzf athyr-linux-*.tar.gz
sudo mv athyr /usr/local/bin/
Windows
Download the latest release from GitHub Releases and add the binary to your PATH.
Verify Installation
After installation, verify Athyr is working:
athyr version
You should see output like:
athyr version 0.1.0
Next Steps
Now that Athyr is installed, head to the Quick Start guide to run your first agent.