1. 程式人生 > >【Python】安裝PIL (Python Imaging Library )

【Python】安裝PIL (Python Imaging Library )

安裝成功PIL,並非指令pip install PIL,而是pip install Pillow

以下轉自原博文

python 安裝PIL (Python Imaging Library ) 提示

  1. Could not find a version that satisfies the requirement PIL (from versions: )  
  2. No matching distribution found for PIL  

開始用
  1. sudo pip install PIL   
總是提示上述錯誤

用命令

  1. sudo pip search PIL  

出現  Pillow (3.2.0)         Python Imaging Library (Fork)

名字變了 。。。。。。

下面正確方式

嘗試用命令安裝

  1. sudo pip install Pillow  

通過 命令引入   from PIL import Image(Pillow由PIL而來,所以該匯入該庫使用import PIL) 正確