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?
_imaging, that's what a leading underscore usually indicates. – Rafe Kettler Nov 9 '10 at 15:07