I have installed (and reinstalled) pil, however, when trying to manipulate and image i get the following message: "ImportError: The _imaging C module is not installed". I also tried the following tests from the interpreter:
>>> import _imaging
Traceback (most recent call last):
File "<stdin>", line 1, in ?
ImportError: No module named _imaging
>>> import imp
import imp # builtin
>>> imp.find_module('_imaging')
Traceback (most recent call last):
File "<stdin>", line 1, in ?
ImportError: No module named _imaging
>>> imp.find_module('Image')
(<open file '/sw/lib/python2.1/site-packages/PIL/Image.py', mode 'r' at 0x112ca30>, '/sw/lib/python2.1/site-packages/PIL/Image.py', ('.py', 'r', 1))
So it looks like pil is installed (since the "Image" module is available) but not completely since the _imaging module is missing. For kicks, I did a search under /sw (and then again under /) for _imaging.so (and then again for just _imaging) and it does not appear to be anywhere on my drive.
One final note; before performing a clean install of panther, I had pil working with python2.1 both installed by fink. Thus, i know that this is possible, i'm sure that i'm just missing something.
I'm running 10.3.1 and fink 0.6.2 on a Ti PowerBook.
Thanks so much for any assistance that you can provide!
Keith R. Alperin
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Fink-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-users
