Skip to main content

Homebrew (macOS / Linux)

The recommended way to install hitspec:
brew install abdul-hamid-achik/tap/hitspec
This installs the latest release and makes the hitspec command available in your shell.

Go Install

If you have Go installed:
go install github.com/abdul-hamid-achik/hitspec/apps/cli@latest
Requires Go 1.25 or later. The binary will be placed in your $GOPATH/bin directory — make sure it’s in your PATH.

Binary Download

Download pre-built binaries for your platform from GitHub Releases.
# Apple Silicon
curl -Lo hitspec https://github.com/abdul-hamid-achik/hitspec/releases/latest/download/hitspec-darwin-arm64
chmod +x hitspec
sudo mv hitspec /usr/local/bin/

# Intel
curl -Lo hitspec https://github.com/abdul-hamid-achik/hitspec/releases/latest/download/hitspec-darwin-amd64
chmod +x hitspec
sudo mv hitspec /usr/local/bin/

Verify Installation

hitspec version
You should see the installed version number. If the command is not found, make sure the binary location is in your PATH.

Updating

brew upgrade hitspec