module 'pip' has no attribute 'pep425tags'

前端 未结 9 1684
感动是毒
感动是毒 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 00:52

    I also have this problem. But I made a mistake following the previous approach. enter image description hereTypeError: get_supported() missing 1 required positional argument: 'archive_root' ,The solution is to add parameter win_amd64 in get_supported().

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

提交回复
热议问题