I am following the Django tutorial and am on part 8 where you install the Django Debug Toolbar by following the the toolbar installation instructions.
I've checked my code against the tutorial's code several times and it appears to match.
However, when I check the polls web page I get an error page:
Looking at the error logs provided by PythonAnywhere I see this error:
ModuleNotFoundError: No module named 'debug_toolbar.middlewear'
To verify the package is installed I re-tried the command to install the Django Debug Toolbar and it told me it was already installed.
The error page has a link to assist with import errors, here's the section I tried:
I tried the following commands:
(django42) 12:53 ~ $ python -i /var/www/www_my_domain_com_wsgi.py
python: can't open file '/var/www/www_my_domain_com_wsgi.py': [Errno 2] No such file or directory
(django42) 13:02 ~ $ python -i /var/www/www.kellydre11.pythonanywhere.com_wsg
i.py
python: can't open file '/var/www/www.kellydre11.pythonanywhere.com_wsgi.py':
[Errno 2] No such file or directory
Update per comment suggestion:
I found the proper file name using ls var/www/
, resulting in some progress but end result of ModuleNotFoundError: No module named 'debug_toolbar.middlewear'
What should I try next?
Your error message ModuleNotFoundError: No module named 'debug_toolbar.middlewear'
suggests that you might have incorrectly used debug_toolbar.middlewear...
when adding the middleware.
Please take note of the spelling it is ...ware not '...wear'.
Adding it to your MIDDLEWARE setting:
MIDDLEWARE = [
# ...
"debug_toolbar.middleware.DebugToolbarMiddleware",
# ...
]
See the docs.