module 'pip' has no attribute 'pep425tags'

前端 未结 9 1697
感动是毒
感动是毒 2020-12-18 00:10

When I am trying to install .whl with pip

it said:

is not a supported wheel on this platform

to solve this problem, I

9条回答
  •  没有蜡笔的小新
    2020-12-18 01:11

    This worked for me with Python 2.7 (in a virtualenv using that version):

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

提交回复
热议问题