module 'pip' has no attribute 'pep425tags'

前端 未结 9 1672
感动是毒
感动是毒 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:14

    For pip v10 use this:

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

提交回复
热议问题