标签:
C:\Python27\Scripts>pip install "numpy-1.9.2+mkl-cp26-none-win_amd64.whl" numpy-1.9.2+mkl-cp26-none-win_amd64.whl is not a supported wheel on this platfor m.
事实上是因为,我的python为2.7版本,下载的numpy为2.6版本,所以错误。
参见:filename.whl is not supported wheel on this platform
下载版本为cp27的文件。
C:\Python27\Scripts>pip install "numpy-1.9.2+mkl-cp26-none-win_amd64.whl" numpy-1.9.2+mkl-cp26-none-win_amd64.whl is not a supported wheel on this platfor m. C:\Python27\Scripts>pip install C:\python-tools\numpy-1.9.2+mkl-cp27-none-win_am d64.whl Processing c:\python-tools\numpy-1.9.2+mkl-cp27-none-win_amd64.whl Installing collected packages: numpy Found existing installation: numpy 1.9.2 Uninstalling numpy-1.9.2: Successfully uninstalled numpy-1.9.2 Successfully installed numpy-1.9.2 C:\Python27\Scripts>
成功安装。
>>> from numpy import * >>>
python2.7安装numpy报错:is not a supported wheel on...
标签:
原文地址:http://my.oschina.net/HIJAY/blog/484759