[Image-SIG] raise ImportError

Fredrik Lundh fredrik@pythonware.com
Mon, 10 Sep 2001 22:28:13 +0200


"Sutherland Bryce-P94468" wrote:

>   File "D:\Python22\PIL\Image.py", line 43, in __getattr__
>     raise ImportError, "The _imaging C module is not installed"
> ImportError: The _imaging C module is not installed
> 
> ======
> 
> How do install the _imaging C module ?

you look for _imaging.pyd (or _imaging.dll), and move
it to your installation's PIL or DLLs directory.

if it still doesn't work, fire up an interpreter and type
"import _imaging", and let us know what it says.

</F>