Install pymongo package by > pip install pymongo
or, better practice make a virtual environment directory where all your dependencies will be installed. > python -m venv myvenv (assuming you name it myvenv) If you are in Windows activate virtual environment with: > cd in directory where you created virtual environment > myvenv\Scripts\activate Make sure you have pip installed > pip install pymongo then you won't have this error. On Thursday, March 19, 2020 at 1:35:52 PM UTC-7, Eswar Subramanyam wrote: > > Hi > > I opted for Djongo to take advantage of Django ORM with MongoDB.. > > but while starting the server, i get the following error > > AppData\Roaming\Python\Python38\site-packages\django\db\utils.py", line > 121, in load_backend > raise ImproperlyConfigured( > django.core.exceptions.ImproperlyConfigured: 'djongo' isn't an available > database backend. > Try using 'django.db.backends.XXX', where XXX is one of: > 'mysql', 'oracle', 'postgresql', 'sqlite3' > > > I have lost a lot of time trying to figure out, and came to a conclusion > that i cant use ORM on Mongo DB. > > Have someone got a clue on what going wrong ? > > I dump also all the installed packages > > Thanks for your help/ > > Package Version > --------------------- ---------- > asgiref 3.2.5 > bson 0.5.8 > certifi 2019.11.28 > chardet 3.0.4 > dataclasses 0.6 > Django 2.2.11 > django-menu-generator 1.0.4 > djongo 1.3.1 > idna 2.9 > mongoengine 0.19.1 > pip 20.0.2 > pymango 0.1.1 > pymongo 3.10.1 > python-dateutil 2.8.1 > pytz 2019.3 > requests 2.23.0 > setuptools 41.2.0 > six 1.14.0 > sqlparse 0.2.4 > urllib3 1.25.8 > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/c6142786-1e5e-4230-b6f7-4607035cb3b6%40googlegroups.com.