Python with PIL and Libjpeg on Leopard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:43:31Z http://stackoverflow.com/feeds/question/249388 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249388/python-with-pil-and-libjpeg-on-leopard 2 Python with PIL and Libjpeg on Leopard thescreamingdrills 2008-10-30T06:00:14Z 2009-09-25T02:18:15Z <p>I'm having trouble getting pictures supported with PIL - it throws me this: "IOError: decoder jpeg not available"</p> <p>I installed PIL from binary, not realizing I needed libjpeg.</p> <p>I installed libjpeg and freetype2 through fink. </p> <p>I tried to reinstall PIL using instructions from <a href="http://timhatch.com/" rel="nofollow">http://timhatch.com/</a> (bottom of the page)</p> <p>"* Download PIL 1.1.6 source package and have the Developer Tools already installed * Patch setup.py with this patch so it can find the Freetype you already have. (patch -p0 &lt; leopard_freetype2.diff) * sudo apt-get install libjpeg if you have fink (otherwise, build by hand and adjust paths)"</p> <p>But I'm still getting the same error. </p> <p>I'm on Leopard PPC. </p> http://stackoverflow.com/questions/249388/python-with-pil-and-libjpeg-on-leopard/249406#249406 0 Answer by Hyposaurus for Python with PIL and Libjpeg on Leopard Hyposaurus 2008-10-30T06:14:06Z 2008-10-30T06:14:06Z <p>Is the python path still looking at the old binary version of libjpeg?</p> <p>You will need to modify it to point to the new place if it is.</p> <p>When you compiled the new version of the PIL did it say that it found libjpeg? It will compile happily without it (iirc) and the first sign of trouble you will see is at include time.</p> <p>You will need to adjust the path at ./configure time.</p> <p>The diff might just not work for you. You should test some more and then perhaps file a bug.</p> http://stackoverflow.com/questions/249388/python-with-pil-and-libjpeg-on-leopard/249414#249414 1 Answer by ayaz for Python with PIL and Libjpeg on Leopard ayaz 2008-10-30T06:31:00Z 2008-10-30T06:31:00Z <p>I had the similar 'jpeg decoder problem' recently when deploying a django project on a product RHEL box that required PIL. I downloaded PIL, and ran 'python setup.py install' instantly, and was happy that everything was working, until I bumped into the problem. Solution: libjpeg was already installed on the system, so I installed libjpeg-devel. I went back into the source of PIL and ran 'python setup.py build', at the end of which, in the output where it shows whether PIL configure was able to detect support for jpeg, gif, freetype, etc, it said that jpeg support was ok. After installing PIL, it worked fine.</p> http://stackoverflow.com/questions/249388/python-with-pil-and-libjpeg-on-leopard/1252888#1252888 1 Answer by William Knight for Python with PIL and Libjpeg on Leopard William Knight 2009-08-10T02:24:39Z 2009-08-10T02:24:39Z <p>I had the same problem and this guy's post provided the solution for me:</p> <p>rm the PIL subdir and the PIL.pth file in the Imaging-1.1.6 subdir</p> <p>full details here:</p> <p><a href="http://blog.tlensing.org/2008/12/04/kill-pil-%E2%80%93-the-python-imaging-library-headache/" rel="nofollow">http://blog.tlensing.org/2008/12/04/kill-pil-%E2%80%93-the-python-imaging-library-headache/</a></p> <p>After doing this, the selftest.py worked fine. I should also note that I am using the macports version of the jpeg library and I had already specified the JPEG_ROOT to point to the include and lib paths in my macports root</p> http://stackoverflow.com/questions/249388/python-with-pil-and-libjpeg-on-leopard/1475112#1475112 0 Answer by Tim Hatch for Python with PIL and Libjpeg on Leopard Tim Hatch 2009-09-25T02:18:15Z 2009-09-25T02:18:15Z <p>If you build with libjpeg, but selftest fails, you probably have another install of PIL that's confusing things. Try installing it, and see if selftest works then.</p> <p>Also the direct link to the instructions referenced in the OP is <a href="http://timhatch.com/ark/2008/08/12/quick-howto-for-pil-on-leopard" rel="nofollow" title="Quick Howto for PIL on Leopard">here</a></p>