Installation
Getting Toka on your system takes just a few seconds.
Quick Install
The easiest way to install Toka is via the official install script:
curl -fsSL https://tokalang.dev/install.sh | bash
This script will:
- Detect your operating system and CPU architecture
- Download the latest stable release
- Install to
~/.toka/bin/ - Configure environment variables
Setting Up Environment
After installation, add these to your ~/.bashrc or ~/.zshrc:
export PATH="$HOME/.toka/bin:$PATH"
export TOKA_LIB="$HOME/.toka/lib"
Reload your shell:
source ~/.bashrc
Verify Installation
tokac --version
You should see output similar to:
toka version 0.9.7 (Built: May 21 2026)
Building from Source
For the latest development version:
git clone https://github.com/tokalang/toka.git
cd toka
make -C build -j8
Supported Platforms
| Platform | Status |
|---|---|
| Linux (x86_64) | ✅ Primary |
| macOS (Apple Silicon) | ✅ Supported |
| macOS (Intel) | ✅ Supported |
| Windows (x86_64) | ✅ Supported |
| Linux (ARM64) | ⚠️ Experimental |