Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 486
Niks Jain Avatar asked Feb 20 '23 21:02

Niks Jain


2 Answers

installing webob solved this for me:

pip install webob==1.1.1
like image 57
radztech Avatar answered Feb 22 '23 11:02

radztech


You may need to specify it in your app.yaml

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

like image 44
dragonx Avatar answered Feb 22 '23 10:02

dragonx