Python 解决: from pip import main ImportError: cannot import name 'main'

Posted bigbee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 解决: from pip import main ImportError: cannot import name 'main'相关的知识,希望对你有一定的参考价值。

此次报错是因为 pip 升级出的问题:

解决方案1:

python3 -m pip install 模块名

解决方案2:

进入 pip3 的文件夹 sudo vi /usr/bin/pip3 
修改:from pip import main 
为:from pip._internal import main

然后保存退出。 
再运行 pip3 install 模块名 就能成功了!

 

 

转自:https://blog.csdn.net/qq_33811662/article/details/80615353




以上是关于Python 解决: from pip import main ImportError: cannot import name 'main'的主要内容,如果未能解决你的问题,请参考以下文章

python包使用pip安装错误

centos自定义安装pip3

转:Python出现Could not find a version that satisfies the requirement openpyxl (from versions: )

python3.5和pip3安装路径不匹配问题

pip安装python包出错:Could not find a version that satisfies the requirement skimage (from versions: )(示例代

02_pip区别: linux环境下python2,python3的