Skip to content

Instantly share code, notes, and snippets.

@kparrish
Last active December 20, 2015 18:49
Show Gist options
  • Save kparrish/6178754 to your computer and use it in GitHub Desktop.
Save kparrish/6178754 to your computer and use it in GitHub Desktop.
Install shell script for pypar
### Install pypar
# Assign user name
read -p "Enter your user name: " UserName
# update all
apt-get update
apt-get -y upgrade
# Pypar
apt-get -y install build-essential openmpi-bin openmpi-doc libopenmpi-dev
sudo -u $UserName wget -P ~/Downloads https://pypar.googlecode.com/files/pypar-2.1.5_108.tgz
cd ~/Downloads
sudo -u $UserName tar xzf pypar-2.1.5_108.tgz
cd pypar_2.1.5_108/source
python setup.py install
cd ~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment