[Image-SIG] Problem installing PIL.

Fredrik Lundh fredrik@pythonware.com
Fri, 20 Oct 2000 13:56:35 +0200


Tom wrote
> I'm having problems getting PIL to work.  I'm using Windows 98 and Python
> v2.0.  After installing PIL, I can access the various modules OK, but
> whenever I actually try to do some image processing I get the message "C
> _imaging Library is not installed"
> 
> For example:
> 
> import Image
> im = Image.open("D:\\myPic.bmp")
> im.show()
> 
> error - "C _imaging Library is not installed".

what happens if you type "import _imaging" ?

</F>