Installing the CLI
Skpr provides a command line interface for interacting with the platform.
Below are instructions for how to install the command line for each operating system.
OSX & Linux
Homebrew
# Install brew tap skpr/taps brew install skpr # Upgrade brew upgrade skpr
OSX
Manual
VERSION=x.y.z curl -sSL "https://github.com/skpr/cli/releases/download/v$VERSION/skpr_$VERSION_macOS_amd64.tar.gz" -o skpr.tar.gz sudo tar -zxf skpr.tar.gz --strip-components=1 -C /usr/local/bin/
Linux
Manual
VERSION=x.y.z curl -sSL "https://github.com/skpr/cli/releases/download/v$VERSION/skpr_$VERSION_linux_amd64.tar.gz" -o skpr.tar.gz sudo tar -zxf skpr.tar.gz --strip-components=1 -C /usr/local/bin/
Windows
The Skpr team recommend installing WSL 2 and installing the Skpr cli via the Linux method.