ImportError: No module named objectid

后端 未结 4 1117
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-03 17:57

I have currently django-mongodb-engine 0.4.0 version installed on my Mac OS X 10.6.8 and weirdly encountered an interesting error while importing the \'compiler\' module:

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-03 18:09

    I'm on Python3 (in 2017) and found that the following works:

    from pymongo import MongoClient
    from bson import ObjectId
    

提交回复
热议问题