Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 2 down vote accepted

It seems manually adding the virtualenv to sys.path solves the problem for me at the moment:

sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'dev.env/lib/python2.5/site-packages/'))
share|improve this answer

If you use easy_install instead of pip you can run it with the --install-dir argument to specify a non-default installation directory.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.