0

Centos 5.8 x64 に PIL をインストールできません。pip install PIL コマンドを使用してインストールしようとしました。しかし、gcc エラーが発生します。以下のエラー スニペットを参照してください。

_imagingft.c:475: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token

_imagingft.c:502: error: old-style parameter declarations in prototyped function definition

/usr/include/freetype2/freetype/freetype.h:1574: error: parameter name omitted

_imagingft.c:502: error: expected ‘{’ at end of input

error: command 'gcc' failed with exit status 1

----------------------------------------
Command /usr/local/bin/python -c "import setuptools;__file__='/home/acresearch/downloads/py-modules/PIL/build/PIL/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /tmp/pip-tHfjOz-record/install-record.txt failed with error code 1 in /home/acresearch/downloads/py-modules/PIL/build/PIL
Storing complete log in /root/.pip/pip.log

python-devel、libjpg、および libpng が既にインストールされているかどうかを既に確認しました (私が読んだいくつかのリンクで可能な解決策として言及されています)。はい、インストールされています。ただし、エラーは引き続き発生します。

これを解決する方法についてのアイデアはありますか? 前もって感謝します!

4

1 に答える 1

1

こんにちは私は同じ問題を最初にインストールすることで解決しました

yum install gcc

これで、PILをインストールできます

pip install PIL
于 2012-04-29T21:16:42.593 に答える