Niks Jain
Niks Jain

Reputation: 1647

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

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

Answers (3)

Venu Murthy
Venu Murthy

Reputation: 2134

below is the exact command that resolved it for me:

sudo pip install webob==1.1.1

Upvotes: 1

radztech
radztech

Reputation: 439

installing webob solved this for me:

pip install webob==1.1.1

Upvotes: 6

dragonx
dragonx

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

Related Questions