I looked at other questions and can\'t figure it out...
I did the following to install django-debug-toolbar:
I have the toolbar working just perfect. With this configurations:
DEBUG = TrueINTERNAL_IPS = ('127.0.0.1', '192.168.0.1',)DEBUG_TOOLBAR_CONFIG = {'INTERCEPT_REDIRECTS': False,}MIDDLEWARE_CLASSES:MIDDLEWARE_CLASSES = ( 'debug_toolbar.middleware.DebugToolbarMiddleware', 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', )
I hope it helps