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?
|
feedback
|
|
You need to install jpeg library first and reinstall your PIL. For example, I'm using CentOS, to install libjpeg, I run
It depends on what kind of linux you are using. And here you have to remove the old PIL
Then install the PIL
| ||||
|
feedback
|
|
A stronger answer can be found at install pil on virtualenv with libjpeg For me what finally worked is
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. | |||
|
feedback
|
|
You can build PIL from source: http://effbot.org/zone/pil-decoder-jpeg-not-available.htm | |||||||
feedback
|