安装whl文件出错
报:文件名.whl is not a supported wheel on this platform.
应该是pip不支持这个whl文件的缘故,网上找了几个方法,最终解决了问题,记录一下查看pip支持版本的方法。
import pip
print(pip.pep425tags.get_supported())
这个函数可以查看到安装的pip支持的文件名和版本。
安装whl文件出错
报:文件名.whl is not a supported wheel on this platform.
应该是pip不支持这个whl文件的缘故,网上找了几个方法,最终解决了问题,记录一下查看pip支持版本的方法。
import pip
print(pip.pep425tags.get_supported())
这个函数可以查看到安装的pip支持的文件名和版本。