Ubuntu Python: Difference between revisions
From charlesreid1
(Created page with "First install python, setuptools, easy_install, and pip: <pre> sudo apt-get install -y python python-setuptools python-pip </pre> Now change permissions so we can run pip witho...") |
No edit summary |
||
| Line 1: | Line 1: | ||
=Installing= | |||
First install python, setuptools, easy_install, and pip: | First install python, setuptools, easy_install, and pip: | ||
| Line 11: | Line 13: | ||
sudo chmod g+w /usr | sudo chmod g+w /usr | ||
sudo chmod -R g+w /usr/local | sudo chmod -R g+w /usr/local | ||
</pre> | |||
Now install useful stuff: | |||
<pre> | |||
pip install flask numpy scipy pandas h5py pytables xlrd xlwt pelican | |||
</pre> | </pre> | ||
Revision as of 19:01, 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 scipy pandas h5py pytables xlrd xlwt pelican