How to generate graphic model Django with PyGraphViz?
sudo apt-get install -y graphviz libgraphviz-dev pkg-config
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install pygraphviz
pip uninstall pyparsing
pip install -Iv https://pypi.python.org/packages/source/p/pyparsing/pyparsing-1.5.7.tar.gz#md5=9be0fcdcc595199c646ab317c1d9a709
pip install pydot
pip install django-extensions
The next command generate the graphic of model.
python manage.py graph_models -e -g -l dot -o core.png core # only app core
python manage.py graph_models -a -g -o models.png # all
References:
http://blog.birdhouse.org/2008/12/23/django-and-graphviz/
http://django-extensions.readthedocs.org/en/latest/graph_models.html#example-usage
http://stackoverflow.com/a/17902926/802542
https://coderwall.com/p/gndgjw/visualizing-your-django-models
https://code.djangoproject.com/wiki/DjangoGraphviz
Thanks @iitsmel