Skip to content

Installation

ClosedSSPM supports multiple installation methods depending on your environment and operating system.

For macOS and Linux users, Homebrew is the recommended way to install and manage ClosedSSPM.

brew tap PiotrMackowski/closedsspm
brew install closedsspm

Pre-compiled binaries are available for major platforms on the GitHub Releases page.

To download and install the latest Linux amd64 binary:

curl -Lo closedsspm.tar.gz https://github.com/PiotrMackowski/ClosedSSPM/releases/latest/download/closedsspm_Linux_amd64.tar.gz
tar xzf closedsspm.tar.gz
sudo mv closedsspm closedsspm-mcp /usr/local/bin/

For other architectures and operating systems, visit the Releases page.

Download the .deb package for your architecture from the Releases page.

sudo dpkg -i closedsspm_*.deb

Download the .rpm package for your architecture from the Releases page.

sudo rpm -i closedsspm_*.rpm

Pull the latest image from the GitHub Container Registry.

docker pull ghcr.io/piotrmackowski/closedsspm:latest

Run a quick version check:

docker run --rm ghcr.io/piotrmackowski/closedsspm:latest --version

If you prefer to build the tool yourself, ensure you have Go 1.21 or later installed.

git clone https://github.com/PiotrMackowski/ClosedSSPM.git
cd ClosedSSPM
make all

Verification

After installation, verify that the CLI is correctly installed by checking the version.

closedsspm --version

Note

If you installed via binary and the command is not found, ensure /usr/local/bin (or your chosen installation path) is in your system PATH.