Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xie186/3c63e648da2a25f6eaf283c08c6e3cb8 to your computer and use it in GitHub Desktop.
Save xie186/3c63e648da2a25f6eaf283c08c6e3cb8 to your computer and use it in GitHub Desktop.
# singularity install ubuntu 14 desktop ISO
# http://singularity.lbl.gov/install-linux
# https://groups.google.com/a/lbl.gov/forum/#!forum/singularity
# get git
sudo apt-get install git
# install autogen dependencies
sudo apt-get install -y build-essential libtool autotools-dev automake autoconf libarchive-dev
# pull singularity from git and compile it
mkdir ~/git
cd ~/git
git clone https://github.com/singularityware/singularity.git
cd singularity
./autogen.sh
./configure --prefix=/usr/local --sysconfdir=/etc
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment