Back
What is the proper way to install pip, virtualenv, and distribute?
The proper way to install pip, virtualenv, and distribute for Python you need to install virtualenv into a bootstrap virtual environment. You can use the virtual environment to create more. Since virtualenv contains pip and everything, so you get everything from one install of bootstrap virtual environment.
You can download the virtualenv by using the following link:
http://pypi.python.org/pypi/virtualenv
https://pypi.python.org/packages/source/v/virtualenv/virtualenv-12.0.7.tar.gz.
After downloading the file you can unpack the source tarball.
You can use the unpacked tarball to create a clean virtual environment. This virtual environment will be used to "bootstrap" others. All of your virtual environments will automatically contain pip and distribute.
It is recommended using pip, install virtualenv into that bootstrap environment.
After all the steps you can use that bootstrap environment to create more.
To know more about this you can have a look at the following video:-
31k questions
32.8k answers
501 comments
693 users