Installation
Installation
This guide covers installing Operator on macOS, Linux, and Windows.
VS Code Extension (Recommended)
The VS Code Extension is the recommended way to get started with Operator. Install from VS Code Marketplace
Works on macOS, Linux, and Windows - no additional setup required.
For detailed setup instructions, see the VS Code Extension documentation.
CLI Installation (Alternative)
For headless servers, CI/CD pipelines, or advanced workflows, install the CLI binary for your platform.
macOS
# Apple Silicon (M1/M2/M3)
curl -L https://github.com/untra/operator/releases/latest/download/operator-macos-arm64 -o operator
chmod +x operator
sudo mv operator /usr/local/bin/
Linux
# ARM64
curl -L https://github.com/untra/operator/releases/latest/download/operator-linux-arm64 -o operator
# x86_64
curl -L https://github.com/untra/operator/releases/latest/download/operator-linux-x86_64 -o operator
chmod +x operator
sudo mv operator /usr/local/bin/
Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/untra/operator/releases/latest/download/operator-windows-x86_64.exe" -OutFile "operator.exe"
# Add to PATH or move to desired location
For checksums and all available downloads, see the Downloads page.
Verify Installation
Confirm Operator is installed correctly:
operator --version
Initial Configuration
Create a configuration file:
operator init
This creates the configuration file with default settings:
- macOS/Linux:
~/.config/operator/config.toml - Windows:
%APPDATA%\operator\config.toml
Next Steps
Configure your integrations: