Ubuntu Python: Difference between revisions
From charlesreid1
| Line 33: | Line 33: | ||
<pre> | <pre> | ||
sudo apt-get install liblapack-dev | sudo apt-get install liblapack-dev | ||
sudo apt-get install gfortran | |||
pip install scipy | pip install scipy | ||
</pre> | </pre> | ||
| Line 47: | Line 48: | ||
sudo apt-get install libpng-dev libfreetype6-dev libxft-dev | sudo apt-get install libpng-dev libfreetype6-dev libxft-dev | ||
pip install matplotlib | pip install matplotlib | ||
</pre> | |||
stats: | |||
<pre> | |||
pip install seaborn | |||
</pre> | </pre> | ||
Revision as of 20:36, 30 March 2015
Installing
First install python, setuptools, easy_install, and pip:
sudo apt-get install -y python python-setuptools python-pip
Now change permissions so we can run pip without sudo:
sudo usermod -g staff charles sudo chmod g+w /usr sudo chmod -R g+w /usr/local
Now install useful stuff:
pip install flask numpy pandas pip install cython
sudo apt-get install h5utils pip install h5py
pip install xlrd xlwt pelican
sudo apt-get install liblapack-dev sudo apt-get install gfortran pip install scipy
More stuff
pip install ipython
Matplotlib prerequisites were tricky, see [1]:
sudo apt-get install libpng-dev libfreetype6-dev libxft-dev pip install matplotlib
stats:
pip install seaborn
Errors
O NOES
Traceback (most recent call last):
File "/usr/bin/pip", line 9, in <module>
load_entry_point('pip==1.5.4', 'console_scripts', 'pip')()
File "/usr/lib/python2.7/dist-packages/pip/__init__.py", line 185, in main
return command.main(cmd_args)
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 161, in main
text = '\n'.join(complete_log)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 72: ordinal not in range(128)
I ran:
sudo apt-get install python-dev
and then
pip install numpy
ran without errors!