Python Eggs On Google App Engine
Usually I would use virtualenv and pip for deployment of web applications. With Google App Engine this doesn't work, because all import statement are relative to directory of the a
Solution 1:
If you use easy_install instead of pip you can run it with the --install-dir
argument to specify a non-default installation directory.
Post a Comment for "Python Eggs On Google App Engine"