1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
===================================
Debian / Ubuntu developer install
===================================
Dependencies
------------
See :ref:`installation` for the installation instructions. Since NiPy
is provided within stock distribution (``main`` component of Debian,
and ``universe`` of Ubuntu), to install all necessary requirements it
is enough to::
sudo apt-get build-dep python-nipy
.. note::
Above invocation assumes that you have references to ``Source``
repository listed with ``deb-src`` prefixes in your apt .list files.
Otherwise, you can revert to manual installation with::
sudo apt-get build-essential
sudo apt-get install python-dev
sudo apt-get install python-numpy python-numpy-dev python-scipy
sudo apt-get install liblapack-dev
sudo apt-get install python-sympy
Useful additions
----------------
Some functionality in NiPy requires additional modules::
sudo apt-get install ipython
sudo apt-get install python-matplotlib
sudo apt-get install mayavi2
For getting the code via version control::
sudo apt-get install git-core
Then follow the instructions at :ref:`trunk_download`.
And for easier control of multiple Python modules installations
(e.g. different versions of IPython)::
sudo apt-get install virtualenvwrapper
|