If you have more than one python installation, you need to install pip (and possibly also setuptools) for each installation separately.
To do this, you can first download ez_setup.py and run it with python3:
/usr/bin/python3 ez_setup.py
This should install setuptools as well as create an easy_install script for your python version, for example. /usr/bin/easy_install-3.2 , which you can use to install pip:
/usr/bin/easy_install-3.2 pip
This will install pip in the python3 package directory and again create a script /usr/bin/pip-3.2 which you can use to install packages for this version of python.
Alternatively, you can follow the installation instructions from here and here .
mata Sep 05 '13 at 19:21 2013-09-05 19:21
source share