Pinax error: no module named debug toolbar

I am developing a project with pinax and django 1.3.1 successfully installed virtualenv, pinax and other requirements and activated it by creating a project using pinax-admin.py setup_project mysite .

The project is created successfully, but every time I run manage.py syncdb , the no module named debug-toolbar error message appears on the command line.

How can i fix this?

+4
source share
1 answer

You need to install django-debug-toolbar .

+6
source

Source: https://habr.com/ru/post/1437250/


All Articles