python--安裝PIL

Pyerlife發表於2016-08-21

PIL:Python Imaging Library,已經是Python平臺事實上的影象處理標準庫了。PIL功能非常強大,但API卻非常簡單易用。

安裝PIL

在Debian/Ubuntu Linux下直接通過apt安裝:

$ sudo apt-get install python-imaging


在windows平臺要到PIL官網下載exe安裝包,如果是64位系統安裝時會報“Python version 2.7 required, which was not found in the registry”錯誤。

非官方的64位庫:

http://www.lfd.uci.edu/~gohlke/pythonlibs/

叫做Pillow,下載下來,是個 .whl 結尾的檔案,這個其實就是python使用的一種壓縮檔案,字尾名改成zip,可以開啟。

這個需要用 pip 安裝。

pip install Pillow-3.3.1-cp27-cp27m-win_amd64.whl

 

進python 命令列 

from PIL import Image

OK,安裝成功了。用法和PIL一樣

 

相關文章