Skip to content

Instantly share code, notes, and snippets.

@eferro
Created August 5, 2012 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eferro/3265121 to your computer and use it in GitHub Desktop.
Save eferro/3265121 to your computer and use it in GitHub Desktop.
setuptools, pip and virtualenv installation
# python installed at /opt/py2.7
# Install setuptools
cd /tmp
wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
tar zxvf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11/
/opt/py2.7/bin/python setup.py install
# Install pip
cd /tmp
wget http://pypi.python.org/packages/source/p/pip/pip-1.1.tar.gz
tar xzf pip-1.1.tar.gz
cd pip-1.1
/opt/py2.7/bin/python setup.py install
# Install virtualenv using the recently installed pip
/opt/py2.7/bin/pip install virtualenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment