I posted a question before regarding this subject, and read other ones posted before, but none has successfully solved my problem.

I am trying to install PIL on Mac OS X Lion, as I need it for a Django application. I also need JPEG support, so I need a JPEG decoder as well.

I have tried to download the libjpeg sources and compile them, and install PIL, but it doesn't recognize the directory.

So what I would like, and I believe this exists somewhere, is a method to install both PIL and libjpeg with a package installer, without the need for any compilation whatsoever!

Thank you in advance for every reply.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

I installed libjpeg and PIL on Snow and it was migrated without problems to Lion.

I think however that you have the same problem I faced with installing libjpeg 7 on Snow. The solution for me was :

  • Make sure that you are NOT using GCC 4.0. That means those export lines in your .bash_profile file that you needed to get MySQLdb working now need to go away.
  • get (http://www.ijg.org/files/jpegsrc.v7.tar.gz) and do the usual ./configure && make && make install (or whatever the readme says).
  • Before installing PIL but after installing libjpeg, change the “JPEG_ROOT = None” line in my setup.py file to “JPEG_ROOT = libinclude(“/usr/local”)”

I got this from a comment on this blog.

Afterwards you can reinstall PIL through pip or easy_install. Make sure all the compiled stuff from your last run is deleted (sometimes you need to do this manually). I used virtualenv and pip.

link|improve this answer
Amazing. That was it. I guess my previous try was just lack of the correct parameters when installing libjpeg or PIL. This was a lifesaver. Thank you ! – Vasco Patricio Dec 18 '11 at 15:34
feedback

If you have macports installed, you should do a:

$ sudo port selfupdate
$ sudo port install py27-pil

It's easier than the easy_install + libjpeg method since macports install the right dependencies.

link|improve this answer
I have macports installed on lion, I can see many py27-* but cannot see py27-pil, any ideas? Thanks – gae123 Mar 5 at 9:27
feedback

Make sure you have homebrew and pip, and then run:

brew install libjpeg
pip install pil
link|improve this answer
feedback

Worth noting and good information to have whenever working with Python and PIL: If you use virtualenv (and I think it's a very good idea), PIL may not correctly detect the image libraries on your system and install without JPEG/PNG support. Use the pillow package for a compatible PIL fork that finds them correctly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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