Anzoth

CLI download

Download the Anzoth CLI.

Install the CLI with npm, or choose a native ZIP for Windows, Linux, or macOS. Each archive follows the published install guide and ships with a matching SHA-256 checksum file.

Supported installs

npm plus native ZIP downloads for four desktop targets.

Verify

Check the SHA-256 file before you install or update.

Launch

Run anzoth, then use anzoth --help or anzoth doctor.

Access

Get a Genesis API Key from your account dashboard.

Native downloads

Pick the archive that matches your machine.

Each ZIP listed below is paired with a SHA-256 checksum file. Verify the checksum before you install, then follow the matching extraction steps.

Device hint

Choose the archive that matches your operating system.

Detection is advisory only. All download options remain visible.

Platform

Windows x86-64

Windows x86-64

Extract the ZIP, place anzoth.exe in a permanent directory, and add that directory to PATH.

Archive

anzoth-windows-x86_64.zip

Checksum

anzoth-windows-x86_64.zip.sha256

Size

~113 MB

SHA-256

6be7440882fc7f4c1f12e29284ba4cb4239eff7ab4e192b3255d03ec8f1a9b00

Install steps

shell

New-Item -ItemType Directory -Force "C:\Program Files\Anzoth\bin" | Out-Null
Copy-Item ".\anzoth.exe" "C:\Program Files\Anzoth\bin\anzoth.exe" -Force
anzoth --version

Verify checksum

shell

Get-FileHash .\anzoth-windows-x86_64.zip -Algorithm SHA256
Get-Content .\anzoth-windows-x86_64.zip.sha256

The binary path in the docs is C:\Program Files\Anzoth\bin\anzoth.exe.

After updating PATH, open a new terminal before running anzoth.

Platform

Linux x86-64

Linux x86-64

Unzip the archive, install the CLI into /usr/local/bin, and verify with sha256sum.

Archive

anzoth-linux-x86_64.zip

Checksum

anzoth-linux-x86_64.zip.sha256

Size

~108 MB

SHA-256

e86261687485860a003303172a285cb99d9e952671f30537c264f652bb73e5eb

Install steps

shell

unzip anzoth-linux-x86_64.zip
sudo install -m 0755 ./anzoth /usr/local/bin/anzoth
anzoth --version

Verify checksum

shell

sha256sum -c anzoth-linux-x86_64.zip.sha256
anzoth --help

The docs expect the checksum file to print anzoth-linux-x86_64.zip: OK.

Use the same install command when updating a native Linux build.

Platform

macOS Apple Silicon

macOS arm64

Built for M1, M2, M3, M4, and newer Apple chips.

Archive

anzoth-macos-arm64.zip

Checksum

anzoth-macos-arm64.zip.sha256

Size

~99 MB

SHA-256

b513a214514083ce98e41e7918ca0a9ba2e963ef40e64e8641912425482504c6

Install steps

shell

unzip anzoth-macos-arm64.zip
sudo mkdir -p /usr/local/bin
sudo install -m 0755 ./anzoth /usr/local/bin/anzoth
hash -r

Verify checksum

shell

file /usr/local/bin/anzoth
anzoth --version
shasum -a 256 -c anzoth-macos-arm64.zip.sha256

The expected architecture string in the guide is Mach-O 64-bit executable arm64.

This is the recommended macOS build for Apple Silicon machines.

Platform

macOS Intel

macOS x86_64

Use this build for Intel-based Macs.

Archive

anzoth-macos-x86_64.zip

Checksum

anzoth-macos-x86_64.zip.sha256

Size

~105 MB

SHA-256

c921be3b4ae7795402045d99b02c99be73d420751928dfa591f1226016f3e157

Install steps

shell

unzip anzoth-macos-x86_64.zip
sudo mkdir -p /usr/local/bin
sudo install -m 0755 ./anzoth /usr/local/bin/anzoth
hash -r

Verify checksum

shell

file /usr/local/bin/anzoth
anzoth --version
shasum -a 256 -c anzoth-macos-x86_64.zip.sha256

The expected architecture string in the guide is Mach-O 64-bit executable x86_64.

This is the recommended macOS build for Intel Macs.

Binary verification

Verify the download before you install it.

Use the checksum file that ships beside each archive. If you prefer a guided install, the CLI docs walk through PATH setup, updates, verification, and removal.

npm install

The easiest way to install Anzoth CLI.

npm handles the platform-specific binary automatically and is the quickest path for most users.

Requirements

  • - Node.js 18 or newer
  • - npm

Install

shell

npm install -g @anzoth/cli

# Supported by Node.js 18+ and npm
# npm automatically fetches the right binary for your platform.

Verify and launch

shell

anzoth --version
anzoth

# Expected output: Anzoth CLI 1.0.0

Update or remove

shell

npm install -g @anzoth/cli@latest
npm install -g @anzoth/cli@latest --include=optional
npm uninstall -g @anzoth/cli

# Diagnose install issues
anzoth doctor

Notes

  • - npm downloads the correct native binary for Windows x86-64, Linux x86-64, macOS Apple Silicon, or macOS Intel.
  • - Use the native ZIP downloads if you prefer to manage the binary yourself.