Created
December 19, 2017 22:09
-
-
Save davidbradway/4271222f414fc7003eb40b9e96ee94dd to your computer and use it in GitHub Desktop.
install and set up singularity on an Ubuntu machine (needs root access)
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
sudo apt-get update | |
sudo apt-get install -y python dh-autoreconf build-essential | |
sudo apt-get install -y automake autoconf libtool | |
git clone https://github.com/singularityware/singularity.git | |
cd singularity | |
./autogen.sh | |
./configure --prefix=/usr/local | |
make | |
sudo make install | |
singularity run shub://vsoch/singularity-images |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment