Python Eggs on Google App Engine
Posted
by
ott
on Stack Overflow
See other posts from Stack Overflow
or by ott
Published on 2010-12-25T11:51:08Z
Indexed on
2010/12/25
11:54 UTC
Read the original article
Hit count: 255
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?
© Stack Overflow or respective owner