Yes.
Download PIL: http://effbot.org/downloads/Imaging-1.1.6.tar.gz
Install: "sudo python setup.py install"
It didn't work initially so I did some other things as recommended here:
http://www.p16blog.com/p16/2008/05/appengine-installing-pil-on-os-x-1053.html
but now I've fixed the app code, I have now backed out both the
Frameworks
and bash_login suggestions and it still works for me.
rgds,
Nigel Bruin
MacOS 10.5.3, PPC.
--
Fabricio C Zuardi
http://cchits.org
> I don't know about Cygwin, but if you're writing a GAE application there's
> no point getting PIL to work on your development App Server.
>
> PIL contains native C code and as such you won't be able to get it running
> on the Google servers. You can only upload pure Python modules as part of
> your application.
>
> There is a GAE image API that allows for some basic image processing:
Erm, the dev_appserver uses PIL to emulate the images API locally (see
http://code.google.com/appengine/docs/images/overview.html). If you
want to test your use of the images API locally, you *must* have PIL
installed.
Dave.
Erm, the dev_appserver uses PIL to emulate the images API locally (see
http://code.google.com/appengine/docs/images/overview.html). If you
want to test your use of the images API locally, you *must* have PIL
installed.
It's still worth noting that you *only* need it for the images API. If
you aren't wanting to use the images API through dev_appserver, you do
*not* need PIL installed, and can safely ignore the error message.
Dave.