美文网首页
pip10包管理导致的install错误

pip10包管理导致的install错误

作者: 老牛哥儿 | 来源:发表于2018-04-26 20:23 被阅读0次

    今天安装geoip2(pip install geoip2),遇到了如下的错误信息:

        Cannot uninstall 'requests'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

    错误的原因是requests 默认版本为2.6.0,而geoip2需要2.9以上版本才支持,但是无法正常卸载2.6.0版本。通过google查找后,发现是pip10对包的管理存在变化。

    通过如下方式强制重新安装requests,问题得到解决:

            pip install -I requests==2.9

    相关文章

      网友评论

          本文标题:pip10包管理导致的install错误

          本文链接:https://www.haomeiwen.com/subject/rynmlftx.html