numpy时报错:is not a supported wheel on this platform 或者...looks like a filename,but the file does..

解决方案:第一种情况:检查py所需要的安装版本,shell中输入
import pip._internal;print(pip._internal.pep425tags.get_supported()) AMD64位的

import pip;print(pip.pep425tags.get_supported()) WIN32位的

numpy时报错:is not a supported wheel on this platform 或者...looks like a filename,but the file does..
查看自己所下的包的版本是否Python的版本
查看自己下的包名字是否符合格式的要求,如果不符合安装的时候根据格式修改一下名字即可

第二种情况:路径不对,我刚开始安装的时候就是一直报错,报标题后半部分的那个错误,因为我之前的路径是
C:\Python\numpy-1.15.1+mkl-cp37-cp37m-win_amd64.whl
后来我就把安装包放到Scripts下,再换路径安装即可C:\Python\Scripts>pip install numpy-1.15.1+mkl-cp37-cp37m-win_amd64.whl