I have python 2.4 and needed to install PIL. After installing it, from python interpreter

>>> import Image
>>> import PIL
>>> import _imaging
ImportError: /home/test/Python-2.4/lib/python2.4/site-packages/PIL/_imaging.so:
    undefined symbol: __isoc99_sscanf
  File "<stdin>", line 1

I need the imaging module to resize images and I have no idea how to solve this issue. Any ideas?

link|improve this question
Have you tried building PIL from source? – codeape Nov 9 '10 at 14:58
They probably don't want you to import _imaging, that's what a leading underscore usually indicates. – Rafe Kettler Nov 9 '10 at 15:07
codeape: I downloaded the PIL tar and executed the command 'python setup.py install' – user502009 Nov 9 '10 at 15:11
Rafe Kettler: Yes I know, I was just testing that there are no problems. I found many websites that suggest that I try this test to ensure that everything is working fine – user502009 Nov 9 '10 at 15:12
feedback

1 Answer

Try doing import imaging instead.

link|improve this answer
I don't think an imaging module exists at all in PIL. – Nick T Nov 9 '10 at 15:51
Yes, imaging does not exist in PIL. Only _imaging – user502009 Nov 9 '10 at 23:59
feedback

Your Answer

 
or
required, but never shown

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