[Answer]-Python 2.7- django 1.7 (virtualenv) AppRegistryNotReady: Models aren't loaded yet error

1👍

I am answering my own question. I had to call django.setup() in the interactive Python shell.

import django
django.setup()

Leave a comment