Created
March 15, 2013 02:29
-
-
Save physacco/5167061 to your computer and use it in GitHub Desktop.
Install Python-2.7.3.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /tmp | |
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz | |
tar xzf Python-2.7.3.tgz | |
cd Python-2.7.3 | |
./configure --prefix=/opt/python/2.7.3 | |
make && make install | |
export PATH=/opt/python/2.7.3/bin:$PATH | |
cd /tmp | |
curl -O http://python-distribute.org/distribute_setup.py | |
python distribute_setup.py | |
curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py | |
python get-pip.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment