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 application.
The most common approach I saw was to simply copy the packages from site-packages
to the directory of the application. This involves manual work and is error-prone.
Another approach was to changes install_lib
and install_scripts
in ~/.pydisutils.cfg
, but this doesn't allow me to use pip
in my home directory simultaneously.
Do you have any suggestions for this?