I tried to use PIL to do some JPEG work in my django app with PIL but I'm getting this IOError.. not sure what to do.

""decoder jpeg not available""

Am I missing the JPEG decoder from my server? If so, how do I fix it?

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

You need to install jpeg library first and reinstall your PIL. For example, I'm using CentOS, to install libjpeg, I run

sudo yum install -y libjpeg-devel

It depends on what kind of linux you are using. And here you have to remove the old PIL

rm -rf /usr/lib/python2.6/site-packages/PIL-1.1.7-py2.6-linux-x86_64.egg/

Then install the PIL

sudo easy_install PIL
link|improve this answer
feedback

A stronger answer can be found at install pil on virtualenv with libjpeg

For me what finally worked is

pip uninstall PIL
sudo apt-get install libjpeg8-dev
pip install PIL

The Python Imaging Library (PIL) seems really picky about version and location of the jpeg libraries. And because PIL is written in C and compiled, you need the development versions of the library in addition to the runtime versions.

link|improve this answer
feedback

You can build PIL from source: http://effbot.org/zone/pil-decoder-jpeg-not-available.htm

link|improve this answer
I did, but running the selftest it still tells me .. from line #24 of selftest.testimage Expected: ('JPEG', 'RGB', (128, 128)) Got: decoder jpeg not available 1 items had failures: 1 of 57 in selftest.testimage Test Failed 1 failures. *** 1 tests of 57 failed. – Brian D Jan 8 '11 at 4:03
I'm assuming the whole ./configure --with-jpeg=/somelib/lib --with-zlib=/somelib/lib line means I need to go fetch a copt of the jpeg library – Brian D Jan 8 '11 at 4:05
Yes, but you can probably do that with your package manager, e.g. on Ubuntu: "apt-get install libjpeg-dev". – TryPyPy Jan 8 '11 at 4:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.