1👍
You forgot to install django-debug-toolbar
which your project requires.
Running pip install django-debug-toolbar
should fix that import error.
Ideally projects come with a Requirements.txt
file that contains the output of pip freeze
. If you have one, you can install all of the requirements by running pip install -r Requirements.txt
Source:stackexchange.com