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

错误的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,Install,错误,PIL)