Created
August 5, 2012 14:30
-
-
Save eferro/3265121 to your computer and use it in GitHub Desktop.
setuptools, pip and virtualenv installation
This file contains 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
# 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