vote up 0 vote down star

Installed the Google App Engine SDK.Python 2.6 perfect. Wanted to go into images, and test locally.Installed PIL

Installed Python, then ran the PIL install, worked this time.

Things seemed good, but trying to do localhost image manipulation gives: "NotImplementedError: Unable to find the Python PIL library. Please view the SDK documentation for details about installing PIL on your system."

System : winxp

flag

1 Answer

vote up 1 vote down check

We're probably going to need more information, so here are some questions and things to try.

How are you trying to access the PIL? Are you trying to use the google.appengine.api.images module, or PIL directly? It sounds like the former, but it's not clear.

Did you follow the App Engine instructions?

Post code, if you can.

Perhaps the most important thing to try: see if you can use PIL from a non-App Engine script. Just write a quick Python script that accesses it and see how that goes. Something like:

import Image
im = Image.open('filename.png')
im.show()

If that doesn't work, it's not surprising that Google App Engine wouldn't work with PIL.

link|flag
Code: import Image // Appengine script error <type 'exceptions.ImportError'>: No module named Image – benasio Jul 23 at 10:49
That suggests that PIL isn't installed properly. It's either not there, or not on Python's module search path. If you don't routinely manipulate you Python search paths, I suggest removing PIL and reinstalling it again, being careful to watch for any errors that pop up along the way – Blair Conrad Jul 23 at 10:58
//original code import Image im = Image.open('filename.png') im.show() ////////// error <type 'exceptions.ImportError'>: No module named Image – benasio Jul 23 at 11:01
Yup, PIL isn't installed correctly. You should have under your Python install directory a directory called Lib\site-packages. That should contain a file called PIL.pth. Check its contents and see if it points to a directory that containes Image.py. If any of these things aren't true, your best bet is probably to reinstall. Or you could reinstall anyhow... – Blair Conrad Jul 23 at 11:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.