Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pinax error: no module named debug toolbar

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

The project is created successfully but each time i runmanage.py syncdb, the command line returns an error no module named debug-toolbar.

How can I fix this ?

like image 780
Paul Nyondo Avatar asked Oct 01 '12 17:10

Paul Nyondo


1 Answers

You need to install django-debug-toolbar.

pip install django-debug-toolbar
like image 150
pram Avatar answered Oct 10 '22 20:10

pram