Installation
Install the Ankos CLI on macOS, Linux, or Windows.
The Ankos CLI is a single Go binary with no runtime dependencies. Install it via the official installer, via Homebrew, or by downloading a release tarball directly.
Install via shell
curl -sSL https://get.ankos.dev | shThis downloads the latest release for your platform and installs it to
/usr/local/bin/ankos. Override the install location with ANKOS_INSTALL_DIR.
Install via Homebrew (macOS / Linux)
brew install ankos/tap/ankosDownload a release manually
Grab a tarball from the releases page for your platform:
ankos_<version>_darwin_arm64.tar.gz— macOS Apple Siliconankos_<version>_darwin_amd64.tar.gz— macOS Intelankos_<version>_linux_amd64.tar.gz— Linux x86_64ankos_<version>_linux_arm64.tar.gz— Linux ARM64ankos_<version>_windows_amd64.zip— Windows
Extract and place ankos somewhere on your PATH.
Verify the install
ankos --versionYou should see the current version printed. If the command is not found,
ensure the install directory is on your PATH.
Upgrading
Re-run the install script to upgrade to the latest release:
curl -sSL https://get.ankos.dev | shOr, with Homebrew:
brew upgrade ankosUninstall
Remove the ankos binary from /usr/local/bin (or wherever you installed
it). No other system changes are made by the installer.

