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版本,因此錯誤。python
參見:filename.whl is not supported wheel on this platformshell
下載版本爲cp27的文件。python2.7
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>
成功安裝。this
>>> from numpy import * >>>