vote up 1 vote down star
1

Earlier it was necesary to install google-app-engine-django helper and distribute Django in zip. But how should I use it now after that they updated Google App Engine with Django 1.0.2.

flag

Latter I realized that I've installed Django for wrong Python instance :D. Now I'm using virtualenv for GAE. – Bolotov Jul 31 at 15:04

1 Answer

vote up 4 vote down check

in your code you need to add

from google.appengine.dist import use_library
use_library('django', '1.0')

The documentation in your 3rd link talks you through the process quite well but remember that its not in the SDK yet so you will have to update your local version manually

link|flag
Add this in main.py right after the initial imports. – pr1001 Oct 4 at 0:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.