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?
|
libjpeg-dev is required to be able to process jpegs with PIL, so you need to install it and then recompile PIL. On Ubuntu:
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:
Or for Ubuntu 32bit:
Then reinstall PIL:
|
|||||||||||||||
|
|
For those on OSX, I used the following binary to get libpng and libjpeg installed systemwide: Because I already had PIL installed (via pip on a virtualenv), I ran:
This resolved the |
|||||||||||
|
|
On Fedora 17 I had to install
|
|||
|
|
|
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 |
|||
|
|