Saltearse al contenido

Installation

The septiembre CLI is distributed as a single static binary. Choose the method that fits your environment.

Download a pre-built binary for your platform from the GitHub Releases page.

Linux (amd64)

Terminal window
curl -L https://github.com/septiembre-ai/septiembre-cli/releases/latest/download/septiembre-linux-amd64 -o septiembre
chmod +x septiembre
sudo mv septiembre /usr/local/bin/

macOS (Apple Silicon)

Terminal window
curl -L https://github.com/septiembre-ai/septiembre-cli/releases/latest/download/septiembre-darwin-arm64 -o septiembre
chmod +x septiembre
sudo mv septiembre /usr/local/bin/

macOS (Intel)

Terminal window
curl -L https://github.com/septiembre-ai/septiembre-cli/releases/latest/download/septiembre-darwin-amd64 -o septiembre
chmod +x septiembre
sudo mv septiembre /usr/local/bin/

Windows

Download septiembre-windows-amd64.exe from the releases page, rename it to septiembre.exe, and add its location to your PATH.

If you have Go 1.23 or later installed:

Terminal window
go install github.com/septiembre-ai/septiembre-cli/cmd/septiembre@latest

The binary is installed to $GOPATH/bin (or $HOME/go/bin by default). Make sure that directory is on your PATH.

After installing, confirm the CLI is on your PATH:

Terminal window
septiembre version

Expected output:

{
"version": "0.x.y",
"commit": "...",
"built_at": "..."
}

Set up authentication to connect the CLI to your Septiembre account.