1. 程式人生 > >Could not find a version that satisfies the requirement PIL (from versions: ) No matching distributi

Could not find a version that satisfies the requirement PIL (from versions: ) No matching distributi

1、軟體版本

首先我先安裝了

python 2.7

pip是  8.1.2

2、當我要安裝PIL時,我在cmd下面輸入:pip install PIL

錯誤提示是:

Could not find a version that satisfies the requirement PIL (from versions: )

No matching distribution found for PIL

如下圖所示:

3、錯誤原因後來找了很多方法,發現我的電腦是64位的,而官網只提供32位的,就是自己去官網下載的其他PIL,

也是32位的。

4、解決方法:找一個非官方的64位大家通用的PIL安裝

(2)搜尋PIL(ctrl+F),找到下面的圖片所示,如果你的python是2.7版本就下載cp27的,3.5就下載cp35

(3)還要先安裝wheel。選擇相應版本下載後,開啟cmd(win+r),你要先安裝pip,具體pip安裝百度一下怎麼安裝,

輸入pip install wheel  後如圖所示

(4)wheel安裝好後,找到我們下載好的Pillow‑5.3.0‑cp27‑cp27m‑win_amd64.whl(這是我的版本)

由於我把它放在桌面,所以我開啟cmd後,找到存放該檔案的桌面,然後pip 安裝就成功了

5、成功後,就可以使用了

6、安裝的第三方模組位置:pycharm->File->Settings->Project Interpreter

7、解除安裝模組

pip uninstall xxx #解除安裝

例如解除安裝第三方模組redis: