Installation
Quick Install
Section titled “Quick Install”- Download the release archive for your platform from the releases page.
- Extract it and run the installer:
The installer places the binary in
Terminal window tar -xvf chuks-darwin-arm64.tar.gzcd chuks-darwin-arm64./scripts/install.sh~/chuks/bin/and adds it to your PATH automatically. - Open a new terminal (or run
source ~/.zshrc) and verify:Terminal window chuks --version
- Download
chuks-windows-amd64.zipfrom the releases page. - Extract the ZIP and move
chuks.exeinto a folder such as%USERPROFILE%\chuks\bin\. - Add the folder to your System PATH:
- Search for “Edit the system environment variables” in the Start menu.
- Click “Environment Variables”.
- Under “User variables”, find
Pathand click “Edit”. - Click “New” and add
%USERPROFILE%\chuks\bin. - Click OK to save.
- Open a new Command Prompt or PowerShell and verify:
Terminal window chuks --version
- Download the archive for your platform:
chuks-darwin-amd64.tar.gz— macOS Intelchuks-darwin-arm64.tar.gz— macOS Apple Siliconchuks-linux-amd64.tar.gz— Linux x86_64chuks-linux-arm64.tar.gz— Linux ARM64chuks-windows-amd64.zip— Windows x86_64
- Extract and move the binary:
Terminal window tar -xvf chuks-darwin-arm64.tar.gzmkdir -p ~/chuks/binmv chuks-darwin-arm64/chuks ~/chuks/bin/ - Add
~/chuks/binto your PATH (add to~/.zshrc,~/.bashrc, or~/.profile):Terminal window echo 'export PATH="$HOME/chuks/bin:$PATH"' >> ~/.zshrcsource ~/.zshrc - Verify:
Terminal window chuks --version
Supported Platforms
Section titled “Supported Platforms”| Platform | Architecture | Archive |
|---|---|---|
| macOS | Intel (x86_64) | chuks-darwin-amd64.tar.gz |
| macOS | Apple Silicon (ARM64) | chuks-darwin-arm64.tar.gz |
| Linux | x86_64 | chuks-linux-amd64.tar.gz |
| Linux | ARM64 | chuks-linux-arm64.tar.gz |
| Windows | x86_64 | chuks-windows-amd64.zip |
Editor Support
Section titled “Editor Support”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
Upgrading
Section titled “Upgrading”If you already have Chuks installed, upgrade to the latest version with:
chuks upgradeInstall a specific version:
chuks upgrade 0.0.3List all available versions:
chuks upgrade --listThe upgrade command automatically detects your platform, downloads the correct binary, and replaces the existing installation. On macOS, code signing is handled automatically.
Next Steps
Section titled “Next Steps”Now that Chuks is installed, try writing your first program.