Django - 如何安装Python图像库(PIL)

时间:2014-02-17 23:47:12

标签: python linux django installation python-imaging-library

我想将ImageField用于表单,根据文档,它说我需要安装Python Imaging Library:

http://www.pythonware.com/products/pil/

它说目前的免费版本是PIL 1.1.7,所以我决定这样做。我使用的是Lubuntu(Linux),唯一的非WindowsOnly安装是

Python Imaging Library 1.1.7源工具包

所以我决定点击并安装.tar.gz文件。我知道在我的下载文件夹中有Imaging-1.1.7.ta​​r.gz文件。有人能告诉我/给我一个网站,它解释了我现在如何将它与Django联系起来?我应该在哪里提取文件?

2 个答案:

答案 0 :(得分:8)

Pillow:http://pillow.readthedocs.org/en/latest/

它是PIL的一个分支,Django支持1.6,并且优先于PIL。 https://code.djangoproject.com/ticket/19934

pip install Pillow

修改

正如@ miki725所指出的那样,它甚至在1.6之前就已经开始工作了,但它已经被“正式”支持了。

答案 1 :(得分:0)

来源:https://pypi.org/project/Pillow/2.2.1/

pip install Pillow

Pillow是Alex Clark和Contributors的“友好” PIL叉子。 PIL是Fredrik Lundh及其贡献者的Python Imaging Library。