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

前端 未结 2 1632
清酒与你
清酒与你 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:05

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

提交回复
热议问题