vote up 0 vote down star
1

I installed libjpeg and PIL, but when I try to save a JPG image, I always get this error:

ImportError: The _imaging C module is not installed

Any help much appreciated!

I tried to import _imaging w/ Python interpreter to see what's wrong and got this:

    >>> import _imaging
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/PIL/_imaging.so, 2): Symbol not found: _jpeg_resync_to_restart
  Referenced from: /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/PIL/_imaging.so
  Expected in: dynamic lookup
flag

3 Answers

vote up 1 vote down

Edit: Thanks for the added error message. This is apparently a problem with the jpeglib on Snow Leopard. Have you tried this?

http://jetfar.com/libjpeg-and-python-imaging-pil-on-snow-leopard/

link|flag
I followed this link to the dot and I still get this error :( - it seems whatever I try I can't get this to work, tried several sources on google already. – resopollution Oct 5 at 7:13
I've also installed libjpeg7, libjpeg6 (I have not uninstalled any version - maybe this is why?). – resopollution Oct 5 at 7:17
1  
How did you install these libraries and to what location? Chances are that location is not in the dynamic load search path. Try running otool -L /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/PIL/_imaging.so – Ned Deily Oct 5 at 7:39
1  
Perhaps you have to reinstall PIL after having installed libjpeg. I'm running python and PIL on snow leopard without any problems. I installed libjpeg7 first for something else (libgd I think). – Markus Oct 5 at 9:54
2  
Oh, absolutely, you need to recompile it even, so you must remove the build directory under the PIL source and do a reinstall. The build process will not notice that the library has been updated, AFAIK. – Lennart Regebro Oct 5 at 10:33
show 3 more comments
vote up 0 vote down

I kept having this problem as well. It turned out to be related to a change I made to my .bash_profile (forcing the usage of ggc-4.0) when trying to fix a MySQLdb installation problem.

http://www.brambraakman.com/blog/comments/installing%5Fpil%5Fin%5Fsnow%5Fleopard%5Fjpeg%5Fresync%5Fto%5Frestart%5Ferror/

link|flag
vote up 1 vote down

I just hit this as well on SL, and the problem is likely your libjpeg was built without a matching architecture. Assuming you're using MacPorts, run file /opt/local/lib/libjpeg.dylib. The right way is to build everything with MacPorts as +universal, see Universal Binaries in MacPorts as it relates to PIL dependencies.

link|flag
thanks, I think you are right, i will check it out and verify – resopollution Nov 10 at 22:59

Your Answer

Get an OpenID
or

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