CLI Installation
Install the Intentra CLI on your system.
Quick Install
macOS / Linux
curl -fsSL https://install.intentra.sh | sh
macOS (Homebrew)
brew install atbabers/intentra/intentra
Windows (PowerShell)
irm https://install.intentra.sh/install.ps1 | iex
Verify Installation
intentra --version
You should see output like intentra version 0.1.0.
System Requirements
- macOS: 10.15+ (Catalina or newer), Intel or Apple Silicon
- Linux: x64 or ARM64
- Windows: 10+ (PowerShell 5.1+), x64 or ARM64
Manual Download
Download binaries directly from GitHub Releases:
| Platform | Architecture | Download |
|---|---|---|
| macOS | Apple Silicon (M1/M2/M3) | intentra_VERSION_darwin_arm64.tar.gz |
| macOS | Intel | intentra_VERSION_darwin_amd64.tar.gz |
| Linux | x64 | intentra_VERSION_linux_amd64.tar.gz |
| Linux | ARM64 | intentra_VERSION_linux_arm64.tar.gz |
| Windows | x64 | intentra_VERSION_windows_amd64.zip |
| Windows | ARM64 | intentra_VERSION_windows_arm64.zip |
Updating
Re-run the install script to update to the latest version:
macOS / Linux:
curl -fsSL https://install.intentra.sh | sh
Homebrew:
brew upgrade intentra
Windows:
irm https://install.intentra.sh/install.ps1 | iex
Uninstalling
macOS / Linux
Remove the binary and configuration:
rm $(which intentra)
rm -rf ~/.intentra
Homebrew
brew uninstall intentra
Windows
Remove-Item "$env:LOCALAPPDATA\intentra" -Recurse -Force
To also clear stored credentials from your keychain:
intentra logout