Installing from latest tarball

Follow the example code below for downloading, extracting, verifying GPG signature and performing file integrity checks.

curl -O https://space.sh/static/download/space-0.12.0/space-0.12.0.tar.gz  
curl -O https://space.sh/static/download/space-0.12.0/space-0.12.0.tar.gz.asc  
curl -O https://space.sh/static/download/space-0.12.0/space-0.12.0.sha  
curl -O https://space.sh/static/download/space-0.12.0/space-0.12.0.sha256  
curl -O https://space.sh/static/download/space-0.12.0/space-0.12.0.md5  
curl -O https://space.sh/static/download/space-0.12.0/install-0.12.0.sh  

Verifying package GPG signature

This step is not required for installing Space, hence it is optional.
Releases are signed either by one of the following keys:

It is then possible to verify the release signatures using the following command:

gpg --verify space-0.12.0.tar.gz.asc space-0.12.0.tar.gz

Performing package integrity check.

This step is not required for installing Space, hence it is optional.
Each release provides more than one way to verify file integrity, along with GPG verification. Current generated hashes are: SHA1, SHA256 and MD5.

Example checking SHA256:

sha256sum -c space-0.12.0.sha256
space-0.12.0.tar.gz: OK

Installing from tarball

After extracting the files use Space for installing itself on the system:

./space /install/

or use the install-<version>.sh file and manually call it:

sh install-<version>.sh

Previous: Installing and running your first Space command

Next: Installing current version from source control repository

Edit this page