Django: AppRegistryNotReady()
Python: 2.7; Django: 1.7; Mac 10.9.4 I'm following the tutorial of Tango with Django At Chapter 5, the tutorial teaches how to create a population script, which can automatically create some data for the database for the ease of development. I created a populate_rango.py at the same level of manage.py. Here's the populate_rango.py: import os def populate(): python_cat = add_cat('Python') add_page( cat=python_cat, title="Official Python Tutorial", url="http://docs.python.org/2/tutorial/" ) add_page( cat=python_cat, title="How to Think like a Computer Scientist", url="http://www.greenteapress