[Fixed]-Error in connecting django with mongodb: ImportError: No module named django.auth

1👍

Django support was removed from MongoEngine in 0.10.0. You might be able to get an earlier version to work, but it might not support recent versions of Django.

With mongoengine 0.10 we can see that

/usr/lib/python2.7/site-packages/mongoengine/

will not have django package in it.
Install mongoengine 0.9 using

sudo pip install mongoengine==0.9

and the django package (support or extension) will be available.

Leave a comment