Why does pip fail when installing local egg repository?

被刻印的时光 ゝ 提交于 2019-12-03 10:24:00

http://www.pip-installer.org/en/latest/other-tools.html#pip-compared-to-easy-install

pip doesn’t do everything that easy_install does. Specifically:

It cannot install from eggs. It only installs from source.

I just came across this page and since I had the same exact problem, I thought to post the solution that worked for me.

This is an issue with the older versions of pip. My version of pip was 1.5.4. I was not able to find the first version of pip that was able to do it but the current version 6.0.6 does the job.

To update to latest pip version, simply run the following command:

pip install --upgrade pip

Needless to say if you want this to only take effect inside your virtual environment, run it inside the environment. Otherwise, run it globally.

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