1. 程式人生 > >pip安裝報錯:is not a supported wheel on this platform

pip安裝報錯:is not a supported wheel on this platform

可能的原因1:安裝的不是對應python版本的庫,下載的庫名中cp27代表python2.7,其它同理。

可能的原因2:這個是我遇到的情況(下載的是對應版本的庫,然後仍然提示不支援當前平臺)

  我下載到的numpy庫檔名:

  使用pip安裝(在命令列中):

  報錯:***  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')]

  (參考帖子網址:http://stackoverflow.com/questions/28107123/cannot-install-numpy-from-wheel-format?rq=1)

  (python庫下載地址(庫很豐富,下載速度也很快):http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy)

相關推薦

Python——pip安裝is not a supported wheel on this platform

它的 form pytho 可能 通過 one 令行 div 版本 pip安裝報錯:is not a supported wheel on this platform 可能的原因1:安裝的不是對應python版本的庫,下載的庫名中cp35代表python3.5,其它同理。

(轉存)pip安裝is not a supported wheel on this platform

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

pip安裝is not a supported wheel on this platform

可能的原因1:安裝的不是對應python版本的庫,下載的庫名中cp27代表python2.7,其它同理。 可能的原因2:這個是我遇到的情況(下載的是對應版本的庫,然後仍然提示不支援當前平臺)   我下載到的numpy庫檔名:   使用pip安裝(在命令列中):   報錯:***  is not

pipis not a supported wheel on this platform

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

安裝.whl檔案出現 is not a supported wheel on this platform.解決辦法

有一次在學習機器學習演算法的時候,要安裝一個scikit-learn庫,需要依賴庫numpy和matplot庫,但是我安裝的時候出現了is not a supported wheel on this platform的錯誤,我先百度了一下嘗試一些方法: 1.  在pytho

pip安裝:is not a supported wheel on this platform

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

pip 安裝 pytroch is not a supported wheel on this platform

可能的原因1:安裝的不是對應python版本的庫,下載的庫名中cp27代表python2.7,其它同理。可能的原因2:這個是我遇到的情況(下載的是對應版本的庫,然後仍然提示不支援當前平臺)  我下載到的numpy庫檔名:  使用pip安裝(在命令列中):  報錯:***  is not a supported

Python pyHook-1.5.1-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform.

     pyHook-1.5.1-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform. 安裝pyhook的時候報錯 下載了pyHook-1.5.1-cp37-cp37m-

Windows環境下Python 安裝is not a supported wheel on this platform解決辦法【轉】

Windows環境下Python 安裝庫 is not a supported wheel on this platform解決辦法 在使用python進行pdf轉換圖片時,需要PythonMagick庫,但下載了許多whl都無法解決 解決方案 可能的原因

安裝MySQL_python-1.2.5-cp27-none-win_amd64.whl is not a supported wheel on this platform.

安裝了python,想用python來連線資料庫,需要安裝mysql-python包。 在https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python

安裝scrapy過程中安裝Twisted依賴庫出錯 is not a supported wheel on this platform

安裝Twisted依賴庫時出現如下錯誤 解決方案:首先排除是否為wheel庫沒有安裝導致的,如果是 在cmd輸入pip install wheel,如果不是則檢視Twisted的庫是否與你的python編譯器的位數相同,如果你的python是32位就要安裝Twisted-1

[Python]Numpy安裝及一些玄學問題(is not a supported wheel on this platform、Undefined variable from import)

numpy是python的一個科學計算庫,可以實現matlab裡的數學運算,基本是用python做數值運算的人必裝的一個的庫了。 然而今天我安裝這個庫遇到了一些以前一直沒遇到的問題,挺迷的,我之前安裝從來沒遇到過,只在這臺神船上遇到,記錄一下吧,或許別人也遇到了同樣的問題。

解決MySQL_python-1.2.5-cp27-none-win_amd64.whl is not a supported wheel on this platform.(win10)

一、問題情境 本想用django搭建個小部落格,但是在Windows10的DOS下安裝mysql驅動時, 總是報錯:MySQL_python-1.2.5-cp27-none-win_amd64.whl is not a supported wheel on this platform.

Python中安裝wheel檔案,在安裝後出現“xx.whlis not a supported wheel on this platform問題”

安裝wheel檔案參考:https://blog.csdn.net/weixin_38501796/article/details/79292935所說的方法 操作之後出現了一個問題:“xx.whlis not a supported wheel on this platform” 解

torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl is not a supported wheel on this platform.

出現該錯誤,說明該版本不適合系統安裝,可以嘗試下載torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl 版本pip install torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl Proce

js****is not a function 的解決方法

1.最簡單的情況就是在html中使用的方法名與js方法名定義的不一致,仔細檢查就ok; 2.在使用js方法form.submit()出現這種報錯的時候,說明在提交表單中的元素中 有設定name=submit 的存在,使得系統混淆,造成報錯! 3.在表單中元素的name和id屬

Ubuntu14.04 Anaconda(python3.6)安裝tensorflow (undefined symbol: zgelsd_; is not a supported wheel

本來安裝tensorflow是一件無比簡單的事,但在我的電腦上卻裝了一個星期。期間遇到各種麻煩事、各種坑,在此記錄一下,方便大家。報錯包括: undefined symbol: zgelsd_ ImportError: cannot import name

springboot啟動LoggerFactory is not a Logback LoggerContext but Logback...

由於springboot預設日誌元件為logback,當時專案使用的為log4j,在打war包到tomcat啟動時報如上錯誤。 原因:lock4j日誌元件和自帶logback日誌元件衝突。 解決方法:     將預設日誌元件排除。  

python中使用pip安裝Fatal error in launcher... 解決方法

python安裝了2和3版本在 cmd 中用pip報的錯誤為:Fatal error in launcher:Unable to create process using 這是因為你安裝了python3和python2在你的windows下,並且在環境變數中分別配置了pip,可是並沒有區分pip3還是p

seleniumis not clickable at point ,Other element would receive the click

# _*_coding:utf-8 _*_ from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.support.