Reputation: 1647
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.
Upvotes: 4
Views: 6337
Reputation: 2134
below is the exact command that resolved it for me:
sudo pip install webob==1.1.1
Upvotes: 1
Reputation: 15143
You may need to specify it in your app.yaml
See documentation here https://developers.google.com/appengine/docs/python/tools/libraries27
Upvotes: 1