Usually I would use virtualenv and pip for deployment of web applications. With Google App Engine this doesn\'t work, because all import s
virtualenv
pip
import
It seems manually adding the virtualenv to sys.path solves the problem for me at the moment:
sys.path
sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'dev.env/lib/python2.5/site-packages/'))