Skip to content

Instantly share code, notes, and snippets.

@physacco
Created March 15, 2013 02:29
Show Gist options
  • Save physacco/5167061 to your computer and use it in GitHub Desktop.
Save physacco/5167061 to your computer and use it in GitHub Desktop.
Install Python-2.7.3.
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