Skip to content

Instantly share code, notes, and snippets.

@bolshoibooze
Last active March 12, 2016 14:48
Show Gist options
  • Save bolshoibooze/cbd4e593f3a93f7bb101 to your computer and use it in GitHub Desktop.
Save bolshoibooze/cbd4e593f3a93f7bb101 to your computer and use it in GitHub Desktop.
Quick install of scipy and pandas on a virtualenv
Bits and pieces i collected while trying to install scipy,numpy and pandas on a VPS (digitalocean):
Scipy has some funny dependencies: http://www.netlib.org/lapack/ and http://www.netlib.org/blas/, so if you want to avoid
the hassle of building BLAS and LAPACK, install linear algebra libraries from repository (for Ubuntu/debian).
# credits:: <http://stackoverflow.com/questions/7496547/does-python-scipy-need-blas>
sudo apt-get install gfortran libopenblas-dev liblapack-dev
pip install --upgrade pip #precautionary
pip install scipy pandas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment