pythondjangopython-3.xpython-2.7django-nose

ImportError: No module django_nose


I following this pluralsight course and running into this error everytime I run the command:

python manage.py test --settings=todobackend.settings.test

I'm new to the Django framework; Could the problem be that my django version (1.9.0) only supports python 3.x and not 2.x?

python --version
Python 2.7.13

Click on pic to see larger, clearer image.

enter image description here

enter image description here


Solution

  • It looks as if you have not installed django-nose in your virtual environment. You can install it with:

    pip install django-nose