Easy_install and Pip doesn't work

前端 未结 6 851
臣服心动
臣服心动 2020-12-15 06:39

Easy_install and Pip doesn\'t work anymore on python 2.7, when I try to do:

sudo easy_install pip

I get:

Traceback (most re         


        
6条回答
  •  孤城傲影
    2020-12-15 07:16

    If you installed a new version of easy_install through Distribute, the new command may have been installed in another directory, most likely /usr/local/bin/. But the traceback shows you were using /usr/bin/easy_install. Try this:

    sudo /usr/local/bin/easy_install ...
    

提交回复
热议问题