python -m pip install django-debug-toolbar
# if you use virtual env:
# activate virtual env:
pipenv shell
# install mentioned packages inside virtual env:
pipenv install django-debug-toolbar
# goto django settings.py, add "debug_toolbar"
INSTALLED_APPS = [
# ...
'debug_toolbar',
]
# goto django urls.py:
urlpatterns = [
# ...
path('__debug__/', include('debug_toolbar.urls')),
]
# goto django setting.py:
MIDDLEWARE = [
# ...
"debug_toolbar.middleware.DebugToolbarMiddleware",
# ...
]
# goto django setting.py, add entire part of below after MIDDLEWARE:
INTERNAL_IPS = [
# ...
"127.0.0.1",
# ...
]
#note: django_debug_toolbar will only work if you have proper html body inside view