11

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 ?

Axel Isouard
  • 1,498
  • 1
  • 24
  • 38
Paul Nyondo
  • 2,126
  • 2
  • 23
  • 30

1 Answers1

21

You need to install django-debug-toolbar.

pip install django-debug-toolbar
Scott Skiles
  • 3,647
  • 6
  • 40
  • 64
pram
  • 1,484
  • 14
  • 17
  • i did what u told me to but now it returns a new error 'no module named compressor` – Paul Nyondo Oct 08 '12 at 09:08
  • 2
    Well that's a different problem. You should install the django_compressor package too. In short, you should meet all of its dependencies before you can use it. – pram Oct 09 '12 at 11:43