Skip to content Skip to sidebar Skip to footer

Django Db Connection With Mangodb Using Mangoengine Gives Me Error?

I am getting the connection error while connecting mangodb through django using mongoengine I have included following things to settings. mongoengine.connect('zaya', username='adm

Solution 1:

pip uninstall pymongo
pip install pymongo==2.8

Solution 2:

It seems you got this issue: https://github.com/MongoEngine/mongoengine/issues/935 Try downgrading to pymongo 2.8

pip uninstall pymongo
pip install pymongo==2.8

Post a Comment for "Django Db Connection With Mangodb Using Mangoengine Gives Me Error?"