Anzoth

CLI download

Release Anzoth CLI 1.0.0.1

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 your API key from your account dashboard.

Verified release: Anzoth CLI 1.0.0.1

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

116,474,508 bytes

SHA-256

E2B4C977A2B87D55ADE172761115A9942588627F5B9E2A44E7638B1352DED8CC

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

113,041,211 bytes

SHA-256

B18B537744AC0662E3EDB2F3247AC9F8A71120D7EDB4BD49F44EC860AED33E3E

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

102,687,601 bytes

SHA-256

7FC7A0889EB026A86C9CD1D15C5F7D9EDA248DB57A8CB4DF02BD83066A2429A2

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

109,188,168 bytes

SHA-256

CD81A12AB5EEDA90FDCF5755A29F2C941722584040BB666BA7E2D4ACF1211B80

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.1

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.