pip install xxx.whl 提示xxx.whl is not a supported wheel on this platform.
whl文件命名存在问题
根据下面的命令确定pip支持的文件命名方式,直接修改文件名安装whl文件
import pip._internal print(pip._internal.pep425tags.get_supported())
import pip print(pip.pep425tags.get_supported())
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/