Posted: Thu 10th Mar 2011@11:01
I recently needed to install a python module on server for which I don't have Admin privileges. It took a while, but by reading the python guide, and a forum post about creating linux environment variables, I managed to get it to work. (In this case, Ubuntu Server 10.?
Step 1.
Get the package you want to install - in my case, matplotlib.
wget http://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.0.1/matplotlib-1.0.1.tar.gz
gunzip -c matplotlib-1.0.1.tar.gz | tar xf -
Actions:
Trackbacks Disabled,
Permalink,
Comments
20 Jun 2011 @ 10:51
Just a comment on your gunzipping of the file. You know tar can handle (at least) gzip and bzip itself.
tar xzf matplotlib-1.0.1.tar.gz
http://eoin.murph.ie