Skip to content

Installation

  1. Download the release archive for your platform from the releases page.
  2. Extract it and run the installer:
    Terminal window
    tar -xvf chuks-darwin-arm64.tar.gz
    cd chuks-darwin-arm64
    ./scripts/install.sh
    The installer places the binary in ~/chuks/bin/ and adds it to your PATH automatically.
  3. Open a new terminal (or run source ~/.zshrc) and verify:
    Terminal window
    chuks --version
PlatformArchitectureArchive
macOSIntel (x86_64)chuks-darwin-amd64.tar.gz
macOSApple Silicon (ARM64)chuks-darwin-arm64.tar.gz
Linuxx86_64chuks-linux-amd64.tar.gz
LinuxARM64chuks-linux-arm64.tar.gz
Windowsx86_64chuks-windows-amd64.zip

For the best experience, install the official Chuks VS Code extension from the marketplace. It provides:

  • Syntax highlighting
  • Code completion
  • Hover documentation
  • Direct CLI integration

If you already have Chuks installed, upgrade to the latest version with:

Terminal window
chuks upgrade

Install a specific version:

Terminal window
chuks upgrade 0.0.3

List all available versions:

Terminal window
chuks upgrade --list

The upgrade command automatically detects your platform, downloads the correct binary, and replaces the existing installation. On macOS, code signing is handled automatically.

Now that Chuks is installed, try writing your first program.