[Fixed]-Django 1.10: Error Installing django_debug_toolbar

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

👤Wasi

1👍

In 1.10, you have to upgrade django-debug-toolbar to support MIDDLEWARE and MIDDLEWARE_CLASSES

pip install django-debug-toolbar --upgrade

Leave a comment