Google App engine(Python) "No module named webob"

6.3k Views Asked by At

Recently I just updated my GAE SDK version to 1.6.4, while am trying to start my server, Its throwing "No module named webob" & getting exit. Note: Am using python2.5 Is there any external patch or stuff needed here to resolved this issue?

If anybody faces this issue and resolved it, please guide me, how did you resolve that..

Best regards.

3

There are 3 best solutions below

6
On BEST ANSWER

You may need to specify it in your app.yaml

See documentation here https://developers.google.com/appengine/docs/python/tools/libraries27

0
On

below is the exact command that resolved it for me:

sudo pip install webob==1.1.1
0
On

installing webob solved this for me:

pip install webob==1.1.1