0

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', } }

Click Here

1 Answers1

1

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.