安装.whl文件出现 is not a supported wheel on this platform.解决办法

有一次在学习机器学习算法的时候,要安装一个scikit-learn库,需要依赖库numpy和matplot库,但是我安装的时候出现了is not a supported wheel on this platform的错误,我先百度了一下尝试一些方法:

1.  在python的shell中输入:import pip; print(pip.pep425tags.get_supported()) 

[('cp35', 'cp35m', 'win32'), ('cp35', 'none', 'win32'), ('py3', 'none', 'win32'), ('cp35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
 

根据上面的显示,选择自己需要的whl文件,

安装.whl文件出现 is not a supported wheel on this platform.解决办法_第1张图片

cp27代表python的版本号,有win32和amd64两个根据pip的结果进行选择

这个方法试了之后还是没有报错的话那就直接看下一步

 

 

2.在经过度娘无数次后我goolge了一下

安装.whl文件出现 is not a supported wheel on this platform.解决办法_第2张图片

 

运行程序:python -m pip install --upgrade pip

之后我的问题就解决了,通过上面两种方法应该就可以解决安装时这种错误了。

你可能感兴趣的:(学习)