Installing Skupper
Using the install script
On Linux or the Mac, you can use the install script to download and extract the command:
Linux or Mac
curl https://skupper.io/install.sh | sh
The script installs the command under your home directory. It prompts you to add the command to your path if necessary.
Installing manually
Download the latest release
Select the latest release for your platform:
To get artifacts for other operating systems and architectures, see the GitHub release page.
Extract the Skupper command
Use tar
or unzip
to extract the command from the release archive:
Linux or Mac
tar -xf skupper-cli-1.0.0-linux-amd64.tgz
Windows
unzip skupper-cli-1.0.0-windows-amd64.zip
This produces an executable file named skupper
in your current
directory.
Place the command on your path
Move the executable file to your preferred location and make it available on your path. For example, this is how you might install it in your home directory:
Linux or Mac
mkdir $HOME/bin
mv skupper $HOME/bin
export PATH=$PATH:$HOME/bin
Windows
mkdir %UserProfile%\bin
move skupper.exe %UserProfile%\bin
set PATH=%PATH%;%UserProfile%\bin
Check the command
To test your installation, run the skupper version
command. You
should see output like this:
$ skupper version
client version 1.0.0
transport version not-found (no configuration has been provided)
controller version not-found (no configuration has been provided)