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

ぃ、小莉子 提交于 2019-11-30 15:51:55

问题


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?


回答1:


You have to re-install easy_install using Python 2.7 and all other modules as well. Don't expect that existing packages installed with a different interpreter are supposed to work out of the box with a new interpreter. Reinstalling into the new Python 2.7 interpreter is the way to go. First step: reinstall easy_install by downloading ez_setup.py (Google) and running it with the 2.7 interpreter..




回答2:


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


来源:https://stackoverflow.com/questions/5585473/upgraded-python-on-snowleopard-using-homebrew-now-pip-and-easy-install-dont-wor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!