problems with PIL

Fredrik Lundh fredrik at pythonware.com
Thu Feb 8 13:14:33 EST 2001


Davide Carboni wrote:
> I'm fighting against PIL, I put _imaging20.dll and _imagingTK.dll in DLLs
> but when I try the piece of code below I get the error

looks like you forgot to rename the DLL.  try doing:

    import _imaging20

if that works, you've installed it correctly, but under
the wrong name.

renaming it to "_imaging.dll" should help.

(and yes, it's "_imagingtk.dll", not "_imagingTK.dll".
Python is case-sensitive, also on Windows)

Cheers /F





More information about the Python-list mailing list