ImportError:没有模块django_nose

时间:2018-01-03 13:31:14

标签: python django python-3.x python-2.7 django-nose

我跟着this pluralsight course并且每次运行命令时遇到此错误:

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

我是Django框架的新手;可能问题是我的django版本(1.9.0)只支持python 3.x而不支持2.x?

python --version
Python 2.7.13

点击图片查看更大,更清晰的图片。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:3)

您的虚拟环境中似乎没有安装django-nose。您可以使用以下命令安装它:

pip install django-nose