Python常用包下載地址

weixin_33912246發表於2017-10-19

http://www.lfd.uci.edu/~gohlke/pythonlibs/
pip安裝報錯:is not a supported wheel on this platform

可能的原因1:安裝的不是對應python版本的庫,下載的庫名中cp27代表python2.7,其它同理。
可能的原因2:這個是我遇到的情況(下載的是對應版本的庫,然後仍然提示不支援當前平臺)

我下載到的numpy庫檔名:numpy-1.10.4+mkl-cp27-cp27m-win32.whl

使用pip安裝(在命令列中):pip install numpy-1.10.4+mkl-cp27-cp27m-win32.whl

報錯:*** is not a supported wheel on this platform,通過在stackoverflow上的一個帖子成功解決問題。
方法:在shell中輸入import pip; print(pip.pep425tags.get_supported())可以獲取到pip支援的檔名還有版本,我這裡如下:

>>import pip;
>>print(pip.pep425tags.get_supported())
[('cp27', 'none', 'win32'), ('py2', 'none', 'win32'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('cp26', 'none', 'any'), ('cp25', 'none', 'any'), ('cp24', 'none', 'any'), ('cp23', 'none', 'any'), ('cp22', 'none', 'any'), ('cp21', 'none', 'any'), ('cp20', 'none', 'any'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]

相關文章