web-dev-qa-db-ja.com

Ubuntu 14.04.1 LTSでのPILインストール

手順に従ってください pythonイメージングライブラリ(PIL)をインストールする方法 Ubuntu 14.04にPILをインストールするための事前セットアップライブラリ。ただし、pip install PIL --allow-external PIL --allow-unverified PILを実行すると、次のエラーが表示されます。

building '_imagingft' extension

x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/freetype2 -IlibImaging -I/usr/include -I/usr/include/tcl8.6 -I/usr/local/include -I/usr/include/python2.7 -c _imagingft.c -o build/temp.linux-x86_64-2.7/_imagingft.o

_imagingft.c:73:31: fatal error: freetype/fterrors.h: No such file or directory

 #include <freetype/fterrors.h>

                               ^

compilation terminated.

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_ubuntu/PIL/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-3ckD6N-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_ubuntu/PIL
Traceback (most recent call last):
  File "/usr/local/bin/pip", line 9, in <module>
    load_entry_point('pip==1.5.6', 'console_scripts', 'pip')()
  File "/usr/local/lib/python2.7/dist-packages/pip-1.5.6-py2.7.Egg/pip/__init__.py", line 185, in main
    return command.main(cmd_args)
  File "/usr/local/lib/python2.7/dist-packages/pip-1.5.6-py2.7.Egg/pip/basecommand.py", line 161, in main
    text = '\n'.join(complete_log)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 57: ordinal not in range(128)
6
Anuj

これらのコマンドを使用してPILを正常にインストールしました。

Sudo apt-get build-dep python-imaging
Sudo apt-get install libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
Sudo pip install Pillow

これらのコマンドの後、次のことができました。

>>> import PIL
>>> PIL.VERSION
'1.1.7'
15
niekas

Pillow 2.0.0をインストールしようとして、同じエラーが発生しました。 [ここ]で解決策を見つけました。( https://github.com/collective/buildout.python/issues/39

要するに、freetypeライブラリの場所は14.04に移動しました。 ハック修正の場合は便宜 は、シンボリックリンクを作成することです。私のシステムでは、ライブラリは/usrではなく/usr/localにあったため、次のようにしました。

ln -s /usr/include/freetype2 /usr/include/freetype

これを行った後、Pillowを2.6.0以上に更新することで解決できるかもしれないことに気付きました。しかし、いずれにせよ、あなたの問題はPILをインストールすることなので、シンボリックリンクの修正はおそらくあなたにとって良いものです。

3
Joe Germuska