发布于 2015-09-11 16:14:41 | 898 次阅读 | 评论: 0 | 来源: 网络整理
警告
Pillow >= 2.1.0 不支持 “import _imaging”。请使用 “from PIL.Image import core as _imaging” 代替。
警告
Pillow >= 1.0 不支持 “import Image”. 请使用 “from PIL import Image” 代替。
警告
PIL 和 Pillow 现在不能共存。 如果你想使用 Pillow, 请首先移除 PIL 。
注解
Pillow >= 2.0.0 支持 Python 版本 2.6, 2.7, 3.2, 3.3, 3.4
注解
Pillow < 2.0.0 支持 Python 版本 2.4, 2.5, 2.6, 2.7.
注解
下面的指南将会安装支持大多数格式的 Pillow。 查看 外部库 了解安装外部库的信息。这个页面包含了特定平台的安装。
你可以使用 pip 命令安装Pillow:
$ pip install Pillow
或者 easy_install (for installing Python Eggs, as pip does not support them):
$ easy_install Pillow
或者从 PyPI 下载 compressed archive from PyPI ,解压,进入目录运行:
$ python setup.py install
Pillow 的许多功能需要外部库的支持:
如果机器上已经使用标准方法在标准目录安装了这些库 (e.g. /usr or /usr/local), 那么不需要进行多余的配置了。如果它们安装在非标准目录,你可能需要配置 setuptools 以使用这些目录。 (i.e. by editing setup.py and/or setup.cfg). 当你安装好依赖包之后, 运行:
$ pip install Pillow
注解
Fedora, Debian/Ubuntu, and ArchLinux 已经包含了 Pillow。
注解
你 不需要 安装所有的外部库如果你只想让 Pillow 基本能运行。
我们不为 Linux 提供二进制文件 如果你不是从源码构建的 Python , 那么先确定你安装了 Python 开发环境,在 Debian 或 Ubuntu:
$ sudo apt-get install python-dev python-setuptools
或者使用 Python 3:
$ sudo apt-get install python3-dev python3-setuptools
在 Fedora , 命令是:
$ sudo yum install python-devel
在 Ubuntu 10.04 LTS 安装依赖包:
$ sudo apt-get install libtiff4-dev libjpeg62-dev zlib1g-dev libfreetype6-dev tcl8.5-dev tk8.5-dev python-tk
在 Ubuntu 12.04 LTS 或者 Raspian Wheezy 7.0 安装依赖包:
$ sudo apt-get install libtiff4-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.5-dev tk8.5-dev python-tk
在 Fedora 20 安装依赖包:
$ sudo yum install libtiff-devel libjpeg-devel libzip-devel freetype-devel lcms2-devel libwebp-devel tcl-devel tk-devel
注解
你 不需要 安装所有的外部库如果你只想让 Pillow 基本能运行。
我们不为 OS X 提供二进制文件,所以你需要先安装 Xcode 才能安装 Pillow 。 (XCode 4.2 on 10.6 可以和官方 Python 二进制版本使用。或者使用任意版本 XCode 自己编译 Python。)
安装依赖包最简单的方法是使用 Homebrew。安装 Homebrew 之后,运行:
$ brew install libtiff libjpeg webp little-cms2
如果你已经构建了Python,可以运行:
$ pip install Pillow
我们在 PyPI 提供 Windows 二进制文件,使用 Python Wheels:
注解
实验性. 需要 setuptools >=0.8 以及 pip >=1.4.1
$ pip install --use-wheel Pillow
如果上面都不行,尝试安装指定版本:
$ pip install --use-wheel Pillow==2.3.0
下面是平台支持情况,一般来说,我们致力于支持大多数平台。
注解
如果你在某平台测试过,编辑这个文件然后在 Github 提交 request 。
Operating system | Supported | Tested Python versions | Tested Pillow versions | Tested processors |
Mac OS X 10.8 Mountain Lion | Yes | 2.6,2.7,3.2,3.3 | x86-64 | |
Mac OS X 10.7 Lion | Yes | 2.6,2.7,3.2,3.3 | 2.2.0 | x86-64 |
Redhat Linux 6 | Yes | 2.6 | x86 | |
CentOS 6.3 | Yes | 2.7,3.3 | x86 | |
Fedora 20 | Yes | 2.7,3.3 | 2.3.0 | x86-64 |
Ubuntu Linux 10.04 LTS | Yes | 2.6 | 2.3.0 | x86,x86-64 |
Ubuntu Linux 12.04 LTS | Yes |
2.6,2.7,3.2,3.3,PyPy2.1 2.7,3.2 |
2.3.0 2.3.0 |
x86,x86-64 ppc |
Ubuntu Linux 13.10 | Yes | 2.7,3.2,3.3 | 2.3.0 | x86 |
Raspian Wheezy | Yes | 2.7,3.2 | 2.3.0 | arm |
Gentoo Linux | Yes | 2.7,3.2 | 2.1.0 | x86-64 |
Windows 7 Pro | Yes | 2.7,3.2,3.3 | 2.2.1 | x86-64 |
Windows Server 2008 R2 Enterprise | Yes | 3.3 | x86-64 | |
Windows 8 Pro | Yes | 2.6,2.7,3.2,3.3,3.4a3 | 2.2.0 | x86,x86-64 |
Windows 8.1 Pro | Yes | 2.6,2.7,3.2,3.3,3.4 | 2.3.0, 2.4.0 | x86,x86-64 |