module 'pip._internal' has no attribute 'pep425tags'
Posted diffx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了module 'pip._internal' has no attribute 'pep425tags'相关的知识,希望对你有一定的参考价值。
一、问题分析
这是python 3.x不能用2.x的版本问题
二、解决方案
import wheel.pep425tags as w
print(w.get_supported())
输出:
[('cp36', 'cp36m', 'win32'), ('cp36', 'none', 'win32'), ('cp36', 'none', 'any'), ('cp3', 'none', 'any'), ('cp35', 'none', 'any'), ('cp34', 'none', 'any'), ('cp33', 'none', 'any'), ('cp32', 'none', 'any'), ('cp31', 'none', 'any'), ('cp30', 'none', 'any'), ('py3', 'none', 'win32'), ('py36', 'none', 'any'), ('py3', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
以上是关于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'解决方法