I have just installed the Django debug toolbar. It was slightly fiddly and although it is working I wanted to check if this is the correct way. Here are the 4 steps that I need to achieve success:
- easy_install django_debug_toolbar
- add 'debug_toolbar.middleware.DebugToolbarMiddleware', to the end of my middleware classes in my project settings
- edit INTERNAL_IPS = ('127.0.0.1') in my django.global_settings.py
- then I added "/usr/local/lib/python2.7/dist-packages/django_debug_toolbar-0.8.5-py2.7.egg/debug_toolbar/templates" to my TEMPLATE_DIRS in project settings.
This was largely trial and error so I'm not sure this is the way to go. I am oarticoluarly unsure if step 4 is necessary...
Any input would be much appreciated
I was having the same problems. But, I think I figured it out. I believe the step you are missing is to add 'debug_toolbar' to your projects setting.py INSTALLED_APPS tuple. This solves it for me. Here is a link to the article that I used as a reference.