Installation
The Tektii CLI allows you to manage strategies, versions, scenarios, and configurations from your terminal.
Quick Install
macOS / Linux
curl -fsSL https://releases.tektii.com/cli/install.sh | sh
Windows (WSL)
Install via Windows Subsystem for Linux using the same command as Linux:
curl -fsSL https://releases.tektii.com/cli/install.sh | sh
WSL Required
The Tektii CLI requires WSL (Windows Subsystem for Linux) on Windows. Native Windows support is not currently available.
From Source
If you have the Rust toolchain installed, you can build from source:
cargo install tektii-cli
This requires:
- Rust 1.75 or later
- Cargo (included with Rust)
Verify Installation
After installation, verify the CLI is working:
# Check version tektii --version # View help tektii --help
You should see output like:
tektii 0.1.0
Next Steps
Once installed, configure the CLI with your API key:
- Get an API key from Settings → API Keys
- Set the environment variable:
export TEKTII_API_KEY="your-api-key"
- Test the connection:
tektii strategy list
Continue to Authentication for more details on configuring your credentials.