You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Espen Angell Kristiansen edited this page Nov 20, 2013
·
3 revisions
The guide assumes the install path is ${HOME}. This will create bin and lib directories in your users home directory.
Setting up environment variables
Put this in .bashrc
# Important that this new bin-directory is set first
export PATH=${HOME}/bin:$PATH
Setting up Python 2.7.2
$ cd /tmp
$ wget http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tar.bz2
$ tar jxvf Python-2.7.2.tar.bz2
$ cd Python-2.7.2
$ ./configure --prefix=${HOME}
$ make
$ make install