Pangram CLI
How-to guides

Install Pangram CLI

Install a signed Pangram CLI release on macOS, Linux, or Windows.

macOS or Linux

Download the latest release installer, inspect it, and run it:

curl --fail --location --silent --show-error \
  https://github.com/Microck/pangram-cli/releases/latest/download/pangram-installer.sh \
  --output pangram-installer.sh
less pangram-installer.sh
sh pangram-installer.sh

The default executable path is $HOME/.local/bin/pangram.

Windows

Download the latest release installer, inspect it, and run it in PowerShell:

Invoke-WebRequest `
  https://github.com/Microck/pangram-cli/releases/latest/download/pangram-installer.ps1 `
  -OutFile pangram-installer.ps1
Get-Content .\pangram-installer.ps1
.\pangram-installer.ps1

The default executable path is %LOCALAPPDATA%\Programs\Pangram\bin\pangram.exe.

The installers verify the release archive before installation, then the downloaded Pangram binary verifies the signed manifest and complete archive. They do not edit PATH. Follow the exact PATH instruction they print when the install directory is not already available.

On this page