I have working project built with djangoappengine and running under App Engine dev server. So I run "manage.py runserver" and all works as appreciated. All requirements (django, djangoappengine etc) are located in project root dir. Now I am trying to use virtualenv (I am running commands in project root):
virutalenv --no-site-packages env
env\Scripts\python manage.py runserver
Server starts, but when I try to access any page I get such exception:
ImportError: Could not import settings 'settings' (Is it on sys.path? Does it have syntax errors?): No module named mimetypes
How can I fix this?
PS I am trying to use this idea on Windows: https://bitbucket.org/imbolc/gae-virtualenv/src
Edit 1. The same behaviour is under Ubuntu 10.10.
Edit 2. The same behaviour is under Mac OS X: How to use virtualenv with Google App Engine SDK on Mac OS X 10.6 . Question can be closed.