Install Spektacular

Get Spektacular running on your machine in under a minute.

Choose your install method

Pick the method that fits your workflow.

Homebrew

Install via the official Homebrew tap:

$ brew install jumppad-labs/homebrew-repo/spektacular

Go install

If you have Go 1.21+ installed, fetch and build the latest release directly:

Terminal window
go install github.com/jumppad-labs/spektacular@latest

Apt (Debian/Ubuntu)

If you have Go 1.21+ installed, fetch and build the latest release directly:

Terminal window
echo "deb [trusted=yes] https://apt.fury.io/jumppad/ /" | \
sudo tee -a /etc/apt/sources.list.d/fury.list
sudo apt-get update
sudo apt-get install spektacular

GitHub Releases

Download the latest release archive from GitHub Releases, extract the binary, and move it to a directory on your $PATH. Replace <VERSION> with the release tag (for example 0.3.0).

macOS (Apple Silicon)

Terminal window
unzip spektacular_<VERSION>_darwin_arm64.zip
sudo mv spektacular /usr/local/bin/

macOS (Intel)

Terminal window
unzip spektacular_<VERSION>_darwin_x86_64.zip
sudo mv spektacular /usr/local/bin/

Linux (x86_64)

Terminal window
tar -xzf spektacular_<VERSION>_linux_x86_64.tar.gz
sudo mv spektacular /usr/local/bin/

Linux (ARM64)

Terminal window
tar -xzf spektacular_<VERSION>_linux_arm64.tar.gz
sudo mv spektacular /usr/local/bin/