Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

PIL does support JPEG in my system. But when I upload a JPEG file, it throws "decoder JPEG not available error". How can I resolve this?

share|improve this question

4 Answers

libjpeg-dev is required to be able to process jpegs with PIL, so you need to install it and then recompile PIL.

On Ubuntu:

# install libjpeg-dev with apt
sudo apt-get install libjpeg-dev

# reinstall PIL
pip install -I PIL

If that doesn't work, try one of the below, depending on whether you are on 64bit or 32bit Ubuntu (thanks Charles Offenbacher for pointing out this differs for 32bit).

For Ubuntu x64:

sudo ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib
sudo ln -s /usr/lib/x86_64-linux-gnu/libfreetype.so /usr/lib
sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib

Or for Ubuntu 32bit:

sudo ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib/
sudo ln -s /usr/lib/i386-linux-gnu/libfreetype.so.6 /usr/lib/
sudo ln -s /usr/lib/i386-linux-gnu/libjpeg.so /usr/lib/

Then reinstall PIL:

pip install -I PIL
share|improve this answer
1  
The problem was that I had two python packages. One that ships in with ubuntu and another that belonged to Zope Server. Somehow, the library was corrupted because I had incorrectly installed it in the wrong package. Otherwise, there is no problem. – Ravi Apr 26 '12 at 12:23
The second bit about symlinking worked for me on this issue... thanks! – Guy Bowden Jan 9 at 11:26
Thanks man! Great advice! – Tarsis Azevedo Jan 30 at 13:24
2  
For the record, that only works on x86_64, I had to run: sudo ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib/; sudo ln -s /usr/lib/i386-linux-gnu/libfreetype.so.6 /usr/lib/; sudo ln -s /usr/lib/i386-linux-gnu/libjpeg.so /usr/lib/ – Charles Offenbacher Feb 2 at 2:59
So helpful, thanks! – s1n4 Apr 7 at 13:46
show 1 more comment

For those on OSX, I used the following binary to get libpng and libjpeg installed systemwide:

libpng & libjpeg for OSX

Because I already had PIL installed (via pip on a virtualenv), I ran:

pip uninstall PIL
pip install PIL --upgrade

This resolved the decoder JPEG not available error for me.

share|improve this answer
1  
it didn't work for me – FRD Nov 28 '12 at 20:06
Thanks, this worked great for me on 10.8.2 (Mountain Lion) – Aea Jan 8 at 1:56
If it doesn't work after install, try to restart. – danielcorreia Jan 21 at 12:28
This worked great for me, and I was struggling with this issue for a good while... thanks! – Sig Myers Apr 22 at 21:42

On Fedora 17 I had to install libjpeg-devel and afterwards reinstall PIL:

sudo yum install --assumeyes libjpeg-devel
sudo pip-python install --upgrade PIL
share|improve this answer

First I had to delete the python folders in hidden folder user/appData (that was creating huge headaches), in addition to uninstalling Python. Then I installed WinPython Distribution: http://code.google.com/p/winpython/ which includes PIL

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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