-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
Will edited this page Mar 10, 2014
·
3 revisions
These are useful tips for installing dependencies from pip or from source, for example in a virtualenv. If you don't want the hassle, just install from the Ubuntu repos by sudo apt-get install python-numpy for example.
Note that this was tested on Ubuntu 12.04 and Ubuntu 13.10.
- Needs to install python-dev:
$ sudo apt-get install python-dev - Install numpy:
$ pip install numpy
- Need Fortran, Blas and LAPACK:
$ sudo apt-get install gfortran libopenblas-dev liblapack-dev - Install scipy:
$ pip install scipy
- Need Sphinx v1.1.3, see issue.
$ pip install "sphinx==1.1.3" - Other prerequisites from here:
$ sudo apt-get install build-essential git cmake libqt4-dev libphonon-dev python2.7-dev libxml2-dev libxslt1-dev qtmobility-dev - Install PySide:
$ pip install pyside - Afterwards, you can re-upgrade sphinx by:
$ pip install --upgrade sphinx
$ pip install cython
- Need numexpr:
$ pip install numexpr - Need HDF5 library:
$ sudo apt-get install libhdf5-serial-dev - Install PyTables:
$ pip install tables
$ pip install pyqtgraph