0
I had to upgrade the django-debug-toolbar
as mentioned in this answer and then add a line in the settings file:
INTERNAL_IPS = ('127.0.0.1')
to make the toolbar visible
1
In 1.10, you have to upgrade django-debug-toolbar
to support MIDDLEWARE
and MIDDLEWARE_CLASSES
pip install django-debug-toolbar --upgrade
Source:stackexchange.com