在 ubuntu 14.04 上安装枕头

在 ubuntu 14.04 上安装枕头

我对枕头很着迷。我已经在这里问过了,但没有解决:

Python Django Mezzanine 安装 Pillow 包失败

我有 Ubuntu 14.04 和 python 2.7。

使用 pip 或从 github 安装枕头时出现此错误:

x86_64-linux-gnu-gcc: error: build/temp.linux-x86_64-2.7/_imaging.o: File o directory non esistente
x86_64-linux-gnu-gcc: error: build/temp.linux-x86_64-2.7/decode.o: File o directory non esistente
x86_64-linux-gnu-gcc: error: build/temp.linux-x86_64-2.7/encode.o: File o directory non esistente
x86_64-linux-gnu-gcc: error: build/temp.linux-x86_64-2.7/map.o: File o directory non esistente
x86_64-linux-gnu-gcc: error: build/temp.linux-x86_64-2.7/display.o: File o directory non esistente
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

----------------------------------------
Cleaning up...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-ctXrZt-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/Pillow
Traceback (most recent call last):
 File "/usr/bin/pip", line 9, in <module>
load_entry_point('pip==1.5.4', 'console_scripts', 'pip')()
 File "/usr/lib/python2.7/dist-packages/pip/__init__.py", line 185, in main
return command.main(cmd_args)
 File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 161, in main
text = '\n'.join(complete_log)
 UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 28: ordinal not in range(128)

当然我也遵循这一点:

在 Ubuntu 14.04.1 LTS 中安装 PIL

也许存在一些库冲突。我尝试删除所有内容并重新安装,但总是出现同样的错误。

你有什么建议吗?

答案1

首先,您需要 python-dev 包,因为 Pillow 需要定义编译头。

sudo apt-get install python-dev

在 Ubuntu 14.04 上,你需要一些额外的软件包才能让枕头工作。使用以下命令安装所有软件包:

sudo apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python-tk

这适用于 Python 2.x 和 Python 3.x。您可能不需要所有这些,但至少应该安装libjpeg8-devzlib1g-dev获取 JPEG 和 PNG 支持。

如果您使用的是 Ubuntu 12.04,请使用以下命令。

sudo apt-get install libtiff4-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.5-dev tk8.5-dev python-tk

详细说明请参阅官方枕头文档。

安装 — Pillow (PIL Fork) 2.6.1 文档

答案2

sudo apt-get install python-dev python-setuptools

sudo apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python-tk

答案3

尝试安装此开发依赖项:

sudo apt-get install python-dev python-setuptools

答案4

除了上述安装之外,安装 Pillow 时我仍然遇到上述错误。

要修复错误,请导航到 /usr/include:

cd /usr/include

创建一个符号链接,指向 freetype2 目录:

ln -s freetype2 freetype

相关内容