I have already completed a Django server installation and now I want to connect it to a MongoDB database. For that I changed my settings.py
file of my project like this:
DATABASES = {
'default': {
'ENGINE': 'django_mongodb_engine',
'NAME': 'db_name',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}
Now when I run in command prompt:
python manage.py runserver
it shows an error:
no module named django_mongodb_engine.base
How can I resolve this error?
Add the following code in settings.py file :-