查看pip支持的whl文件:'module' object has no attribute 'pep425tags'

参考:
1、module ‘pip’ has no attribute ‘pep425tags’
2、module ‘pip._internal’ has no attribute ‘pep425tags’

python 2.7,Jetson nano
进入python,

AMD64

import pip._internal
print(pip._internal.pep425tags.get_supported())

WIN32

import pip
print(pip.pep425tags.get_supported())

以上还是不行

import wheel.pep425tags as w
print(w.get_supported())

查看pip支持的whl文件:'module' object has no attribute 'pep425tags'_第1张图片(如有侵犯,请联系作者修改或删除)

你可能感兴趣的:(Jetson,nano)