您的位置:首页 > 编程语言 > Python开发

[Python]安装PIL出现command 'gcc' failed with exit status 1错误

2013-05-18 15:25 831 查看
错误的log是

(env)lzz@ubuntu:~/Virtualenv/blog1_django_1.4/eshop$ easy_install pil
Searching for pil
Reading http://pypi.python.org/simple/pil/ Reading http://www.pythonware.com/products/pil Reading http://effbot.org/zone/pil-changes-115.htm Reading http://effbot.org/downloads/#Imaging Best match: PIL 1.1.7
Downloading http://effbot.org/media/downloads/PIL-1.1.7.tar.gz Processing PIL-1.1.7.tar.gz
Running PIL-1.1.7/setup.py -q bdist_egg --dist-dir /tmp/easy_install-nrt6g1/PIL-1.1.7/egg-dist-tmp-owLvST
WARNING: '' not a valid package name; please use only.-separated package names in setup.py
_imaging.c:75:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: Setup script exited with error: command 'gcc' failed with exit status 1


在stackoverflow上找到如下的回答:
You must install the
python-dev
package which includes the CPython header files needed to compile C extensions.

sudo apt-get install python-dev

好了,等待安装好试试把。

再次安装

easy_install pil

成功了。。。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python pil install 错误
相关文章推荐