今天在Python运行环境的服务器弄一个有关图像处理的程序时报这样的错: 1 NameError: global name 'Image' is not defined import Image 了下,发现原来 Python 并没有自带图像处理库,需要独立安装……查了下,Python常用的图像处理库叫PIL,可以使用 pip 安装,不错-于是在 用virtualenv 里敲入 pip install PIL. 安装很快完成,于是愉悦地刷新,等待程序的通过,结果又报错: 1 IOError: de…
The first thing I check when I got this error was to check if libjpeg was installed. Lets try this sudo apt-get install libjpeg libjpeg-dev sudo apt-get install libfreetype6 libfreetype6-dev download jpeg source tar -xzvf jpegsrc.v8c.tar.gz cd jpeg-6…