Skip to content

Instantly share code, notes, and snippets.

@svs14
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svs14/9148094 to your computer and use it in GitHub Desktop.
Save svs14/9148094 to your computer and use it in GitHub Desktop.
Installs python specific software for scientific applications on Ubuntu 12.04 LTS.
#!/bin/sh
# Installs python specific software
# for scientific applications on Ubuntu 12.04 LTS.
#
# It is recommended to run this in a virtualenv session.
# Install numpy
sudo aptitude -y build-dep python-numpy
pip install numpy
# Install scipy
sudo aptitude -y build-dep python-scipy
pip install scipy
# Install matplotlib
sudo aptitude -y install libpng12-dev
sudo aptitude -y build-dep python-matplotlib
pip install matplotlib
# Install sklearn
sudo aptitude -y build-dep python-sklearn
pip install scikit-learn
# Install pandas
sudo aptitude -y build-dep python-pandas
pip install pandas
# Install IPython suite
pip install ipython[all]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment