When I run the command
./manage.py validate
I get the error
Error:No module named debugger.debugger
I have debugger installed in my virtual environment via pip.
When I run the command
./manage.py validate
I get the error
Error:No module named debugger.debugger
I have debugger installed in my virtual environment via pip.
Actually the real problem was because of django-haystack version. Requires was version 2.0.0 So during validate somehow the real error was not showing up. The actual error was an import error during validate. Thanks everyone for the help