Created
January 15, 2018 15:13
-
-
Save andreas-wilm/1cac5cf8f5edaa482ba13850e3e6fd01 to your computer and use it in GitHub Desktop.
Install Singularity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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