module 'pip._internal' has no attribute 'pep425tags'
Posted theflash-bar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了module 'pip._internal' has no attribute 'pep425tags'相关的知识,希望对你有一定的参考价值。
这是python 3.x不能用2.x的版本问题;
解决方案:
import wheel.pep425tags as w
print(w.get_supported())
如果报错:
TypeError: get_supported() missing 1 required positional argument: ‘archive_root‘
修改为:
print(w.get_supported("win_amd64"))
以上是关于module 'pip._internal' has no attribute 'pep425tags'的主要内容,如果未能解决你的问题,请参考以下文章
module 'pip._internal' has no attribute 'pep425tags'
Python使用pip安装报错ModuleNotFoundError: No module named ‘pip._internal.cli.main‘的解决方法
解决 ImportError: No module named _internal
创建django项目出现AttrbuteError module 'pip' has no attribute 'main'解决方法