I am new to python, I have changed my path to point to the new python 2.7, but pip and easy_install, and mercurial are still looking at the default installed version 2.6. How do I fix this?
You need to install pip
and setuptools
again (which provides the easy_install
command) for your new version of Python. pip
and setuptools
are not globally installed, rather they must be installed specifically for each version of Python on your system.
To install pip
:
$ curl -O https://github.com/pypa/pip/raw/master/contrib/get-pip.py
$ python get-pip.py
To install setuptools
:
$ curl -O http://peak.telecommunity.com/dist/ez_setup.py
$ python ez_setup.py
… but you should probably be using Distribute (it's a newer version of setuptools
):
$ curl -O http://python-distribute.org/distribute_setup.py
$ python distribute_setup.py
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With