My version of Django 1.2.5 works in Python 2.6.5. I installed debug_toolbar from the Ubuntu Software Center, and it crashed with the error "No module with messages." With the debug_toolbar version of Django - 1.1.1 without debug_toolbar - 1.2.5. When I deleted it, Django works well. What happened to debug_toolbar? How can i fix this?
Before installation:
>>> import django
>>> django.VERSION
(1, 2, 5, 'final', 0)
i159@i159-desktop:~/djproj/pastebin$ python2.6 manage.py runserver
Validating models...
0 errors found
...
After installation:
>>> import django
>>> django.VERSION
(1, 1, 1, 'final', 0)
i159@i159-desktop:~/djproj/pastebin$ python2.6 manage.py runserver
Error: No module named messages
I159 source
share