vote up 0 vote down star

I've built a GAE site on a Windows machine and I want to work on it from my MacBook. I have the code in SVN remotely and I installed the Mac version of GAE which comes with this launcher program. When I configured my application in the launcher and fire the application up, I get the following error:

22 from datetime import timedelta
23
24 from google.appengine.ext import webapp
25 from google.appengine.ext.webapp import template
26 
google undefined, webapp undefined

<type 'exceptions.ImportError'>: cannot import name webapp

This is really strange to me because it's been running fine in production and on my Windows dev machine for ages, so it must be something with the platform change. Has anyone run into this issue before? It's like the google.appengine modules are missing or something.

flag

80% accept rate
Check what's in your sys.path. See also docs.python.org/tutorial/…. – Constantin Mar 30 at 19:10
I tested my path with the cmd line and got: File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/webapp/__init__.py", line 68, in <module> import webob ImportError: No module named webob – Greg Mar 30 at 19:30
So...I'm more broken down the line, it seems? – Greg Mar 30 at 19:43

1 Answer

vote up 0 vote down check

Sounds like something went wrong with your Mac GAE install mate. I'm assuming you have Leopard installed. As the docs say, Leo comes with py2.5, I'm again assuming you are using that. You may need to install Python 2.5 via MacPorts and repoint your GAE dev server to that one. I believe that is how my MacBook is setup, but I did it so long ago I can't remember.

link|flag

Your Answer

Get an OpenID
or

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