[Image-SIG] Only just now getting on the PIL

Fredrik Lundh fredrik@pythonware.com
Thu, 8 Feb 2001 18:50:30 +0100


Kent wrote:
> I put _imaging.dll in \python20\DLL also in \windows\system

is \python20\DLL on your Python path?

try this:

>>> import sys
>>> sys.path
['', 'c:\\python20\\DLLs', 'c:\\python20\\Lib', /.../]

(it's usually "DLLs", not "DLL".  if you had to create
the directory yourself, it's not the right one ;-).

Cheers /F