Unable to find the Python PIL library.Google App Engine -
Google App Engine SDK has been installed. Python 2.6 perfect. Wanted to go into images and test locally. Installed PIL
Installed Python, then PIL was installed, worked at this time.
Things looked good, but the local host was trying to manipulate the image:
System: winxp
We may need more information, So here are some questions and things to try.
How are you trying to use demographics? Are you trying to use the google.appengine.api.images module, or PIL directly?
Post code, if you can.
Perhaps the most important thing to try is: If you can use PIL from a non-app engine script, see. Just type a quick python script that accesses it and see how it goes. Something like this:
import image im = Image.open ('filename.png') im.show ()
If that does not work, It's not surprising that Google App Engine will not work with PIL.
Comments
Post a Comment