Installation

Install the Saber CLI on macOS or Linux, verify the binary, and prepare your shell for repeatable API-driven workflows.

Install with curl

curl -sSL https://raw.githubusercontent.com/saberapp/cli/main/scripts/install.sh | sh

The installer places saber on your PATH and prompts for elevated permissions only when needed.

Install with Go

go install github.com/saberapp/cli/cmd/saber@latest

If saber is not found after installation, add Go's binary directory to your shell profile:

export PATH="$HOME/go/bin:$PATH"

Verify

saber version
saber help

Update

Run the installer again to fetch the latest release, or reinstall with go install:

curl -sSL https://raw.githubusercontent.com/saberapp/cli/main/scripts/install.sh | sh

On this page