Skip to content

Instantly share code, notes, and snippets.

@andreas-wilm
Created January 15, 2018 15:13
Show Gist options
  • Save andreas-wilm/1cac5cf8f5edaa482ba13850e3e6fd01 to your computer and use it in GitHub Desktop.
Save andreas-wilm/1cac5cf8f5edaa482ba13850e3e6fd01 to your computer and use it in GitHub Desktop.
Install Singularity
set -euo pipefail
VERSION=2.4.2
pushd /tmp/
wget https://github.com/singularityware/singularity/releases/download/$VERSION/singularity-$VERSION.tar.gz
tar xzf singularity-${VERSION}.tar.gz
cd singularity-${VERSION}
./configure --prefix=/usr/local
make
sudo make install
rm -rf ../singularity-${VERSION}.tar.gz ../singularity-${VERSION}
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment