Upgraded Python on Snowleopard Using Homebrew now pip and easy_install don't work

前端 未结 2 1619
清酒与你
清酒与你 2021-01-03 06:22

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. Ho

2条回答
  •  悲哀的现实
    2021-01-03 07:20

    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
    

提交回复
热议问题