PIL在我的系统中支持JPEG。
每当我做一个上传,我的代码失败:
File "PIL/Image.py", line 375, in _getdecoder
raise IOError("decoder %s not available" % decoder_name)
IOError: decoder jpeg not available
我该如何解决这个问题?
PIL在我的系统中支持JPEG。
每当我做一个上传,我的代码失败:
File "PIL/Image.py", line 375, in _getdecoder
raise IOError("decoder %s not available" % decoder_name)
IOError: decoder jpeg not available
我该如何解决这个问题?
当前回答
我太新手了,不能评论zeantsoi的帖子。所以这里是我需要做的解决在OSX上10.9.1的
IOError:解码器jpeg不可用
1)安装Xcode工具(打开你的终端并执行:Xcode -select——install) -摘自这篇文章:在Mac OS X 10.9之后无法安装PIL
2)安装libpng和libjpeg包(组合安装程序)从这个链接:http://ethan.tira-thompson.com/Mac_OS_X_Ports.html
3)重启(不确定这是强制性的)
4)重新安装PIL运行pip install -I PIL(因为我最初安装PIL之前有问题)
希望这对你有所帮助,不要再困惑了…
_oho
其他回答
首先,除了卸载python,我还必须删除隐藏文件夹user/appData中的python文件夹(这造成了巨大的麻烦)。然后我安装了WinPython Distribution: http://code.google.com/p/winpython/,其中包含PIL
apt-get install libjpeg-dev
apt-get install libfreetype6-dev
apt-get install zlib1g-dev
apt-get install libpng12-dev
安装这些并确保使用pip安装PIL,因为我从源代码编译了它,由于某种原因它无法工作
在Mac OS X Mavericks(10.9.3)上,我通过以下方法解决了这个问题:
通过brew安装libjpeg(包管理系统)
编译libjpeg
重新安装枕头(我用枕头代替PIL)
pip安装-I枕
对于那些使用Mac OS Mountain Lion的人,我使用zeantsoi的答案,但它不起作用。
我最终得到了这篇文章的解决方案:http://appelfreelance.com/2010/06/libjpeg-pil-snow-leopard-python2-6-_jpeg_resync_to_restart/
现在,我很高兴地运行我的jpeg脚本!
在Fedora 17上,我必须安装libjpeg-devel,然后重新安装PIL:
sudo yum install --assumeyes libjpeg-devel
sudo pip-python install --upgrade PIL