Python 解决: from pip import main ImportError: cannot import name 'main'
2021-07-08 05:06
标签:sdn 解决 修改 intern detail error 问题: 运行 python 此次报错是因为 pip 升级出的问题: python3 -m pip install 模块名 进入 pip3 的文件夹 sudo vi /usr/bin/pip3 然后保存退出。 转自:https://blog.csdn.net/qq_33811662/article/details/80615353 Python 解决: from pip import main ImportError: cannot import name 'main' 标签:sdn 解决 修改 intern detail error 问题: 运行 python 原文地址:https://www.cnblogs.com/luozeng/p/9583640.html解决方案1:
解决方案2:
修改:from pip import main
为:from pip._internal import main
再运行 pip3 install 模块名 就能成功了!
上一篇:python 装饰器
文章标题:Python 解决: from pip import main ImportError: cannot import name 'main'
文章链接:http://soscw.com/index.php/essay/102286.html