Skip to main content

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:

PlatformArchitectureDownload
macOSApple Silicon (M1/M2/M3)intentra_VERSION_darwin_arm64.tar.gz
macOSIntelintentra_VERSION_darwin_amd64.tar.gz
Linuxx64intentra_VERSION_linux_amd64.tar.gz
LinuxARM64intentra_VERSION_linux_arm64.tar.gz
Windowsx64intentra_VERSION_windows_amd64.zip
WindowsARM64intentra_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
CLI Installation - Intentra Docs