Django Admin login page, I am using mongodb for django, after that only I got error
mongodb configure:
DATABASES = { 'default': { 'ENGINE': 'djongo', 'NAME': 'django-mongo-db', } }
Django Admin login page, I am using mongodb for django, after that only I got error
mongodb configure:
DATABASES = { 'default': { 'ENGINE': 'djongo', 'NAME': 'django-mongo-db', } }
You are using djongo
as your backend engine, the requirement of djongo
is Django==2.1.2
. Please install the same as -
pip install django==2.1.2
I have faced this error in the past. Doing this resolved it.