我正在关注涉及图片上传的Django教程,并遇到了这个问题。我尝试了几次安装并重新安装PIL,libjpeg和libfreetype6,但到目前为止似乎没有任何工作。我花了几个小时试图找到解决方案,而且此时非常沮丧。请帮忙。
以下是我在mac上重新安装PIL后selftest.py的结果:
PIL 1.1.6 BUILD SUMMARY
--------------------------------------------------------------------
version 1.1.6
platform darwin 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)]
--------------------------------------------------------------------
--- TKINTER support ok
*** JPEG support not available
--- ZLIB (PNG/ZIP) support ok
*** FREETYPE2 support not available
--------------------------------------------------------------------
To add a missing option, make sure you have the required
library, and set the corresponding ROOT variable in the
setup.py script.
To check the build, run the selftest.py script.
rrdhcp-10-32-44-157:Imaging-1.1.6 pfg$ python selftest.py
*****************************************************************
Failure in example: _info(Image.open("Images/lena.jpg"))
from line #24 of selftest.testimage
Exception raised:
Traceback (most recent call last):
File "./doctest.py", line 499, in _run_examples_inner
exec compile(source, "<string>", "single") in globs
File "<string>", line 1, in <module>
File "./selftest.py", line 22, in _info
im.load()
File "PIL/ImageFile.py", line 180, in load
d = Image._getdecoder(self.mode, d, a, self.decoderconfig)
File "PIL/Image.py", line 375, in _getdecoder
raise IOError("decoder %s not available" % decoder_name)
IOError: decoder jpeg not available
1 items had failures:
1 of 57 in selftest.testimage
***Test Failed*** 1 failures.
*** 1 tests of 57 failed.
答案 0 :(得分:42)
PIL有几种情况可以带来类似的体验。 如果您使用
从virtualenv中安装了PILpip install PIL
然后你应该已经安装了libjpeg,libz的 dev 版本。 假设你在Ubuntu盒子上,
pip uninstall PIL
apt-get install libjpeg-dev zlib1g-dev libpng12-dev
pip install PIL
应该足够了。您也可以安装Pillow而不是PIL,它可以更好地与setuptools配合使用,并且可以安装在virtualenv中。
答案 1 :(得分:7)
我发现这对我来说很好:
pip uninstall PIL
pip install Pillow
然后我重新启动了服务器:
kill -HUP XXX
其中 XXX 是您的服务器进程的进程ID。
答案 2 :(得分:4)
我已经在使用Pillow
并遇到了同样的错误。
尝试按照其他人的建议安装libjpeg
或libjpeg-dev
,但被告知已经安装了(较新的)版本。
最后,只需重新安装Pillow
:
sudo pip uninstall Pillow
sudo pip install Pillow
答案 3 :(得分:0)
如果您正在使用Fedora,请在进行Pip安装Pillow之前执行:
yum install libjpeg-devel zlib1g-devel libpng12-devel