I install django-extensions like that:
git clone git://github.com/django-extensions/django-extensions.git
cd django-extensions
python setup.py install
Then I go to my project folder and use:
./manage.py graph_models -a -g -o my_project_visualized.png
Whats returns:
Unknown command: 'graph_models'
Type 'manage.py help' for usage.
I try “help” – all of that commands I know, but how can I fix the problem with graph_models?
Since you haven’t mention it. I assume you’re missing the
INSTALLED_APPSstep:settings.py:
Is’s not mentioned on the GitHub site, but it is mentioned on the documentation.
And of course:
And add it to the
requirementsif you have any