ImportError:没有名为django.mongo_auth的模块

时间:2015-08-01 23:57:14

标签: python django mongodb mongoengine django-mongodb-engine

当尝试设置环境来运行django-nonrel和mongoengine时,我不断收到以下错误。该项目在开发它的不同计算机上运行良好。

Traceback (most recent call last):
enter code hereFile "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)

File "/home/test/Documents/personal-proj/groc/local/lib/python2.7/site-packages/django/utils/translation/trans_real.py", line 159, in _fetch
app = import_module(appname)

File "/home/test/Documents/personal-proj/groc/local/lib/python2.7/site-packages/django/utils/importlib.py", line 40, in import_module
__import__(name)

ImportError: No module named django.mongo_auth

1 个答案:

答案 0 :(得分:0)

尝试跑步:

pip install django-mongo-auth

由于您是在新环境中进行设置,因此需要确保已安装所有依赖项。如果您有最新的requirements.txt文件,还可以运行:

pip install -r path/to/requirements.txt

您可以使用以下方式查看您当前使用的包:

pip freeze