win安裝wordcloud報錯解決方案

zzzsdust發表於2018-05-03

問題:

① 在命令列下執行pip install wordcloud出現報錯如圖:


②下載了錯誤的whl檔案, 出現wordcloud-1.4.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform. 報錯,如圖


解決方案:

下載安裝相應的 .whl檔案

①先判斷下載哪個.whl檔案

   執行python命令

  

可以知道需要安裝的是32位系統上的python 3.6.5版本的

②登陸 https://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloud 網址找到相應檔案

  

這裡的 cp36 對應的就是python 3.6.5,而 win32對應的就是32位系統。於是下載此檔案。

③安裝此檔案

cd 到檔案的下載目錄,我將檔案下載到了C:\Users\ZZZ\Downloads

於是執行以下操作:

cd C:\Users\ZZZ\Downloads

pip install wordcloud-1.4.1-cp36-cp36m-win32.whl  (這裡你下載的是哪個檔案就安裝哪個檔案)

pip install wordcloud

這樣就會安裝成功了。


參考:https://blog.csdn.net/qq_35025383/article/details/77655098

相關文章