简介: 运行别人的一个程序,提示缺少Bson模块,自然去安装,却发现没有名下的code模块
1、原来这个模块是和mongodb相关的,当安装了bson模块,因版本问题,会引起一些文件缺失,
2、而mongodb官网上,也不建议外装bson:
到pymongo官方文档里查,第一句就是:
Warning Do not install the “bson” package. PyMongo comes with its own bson package; doing “pip install bson” or “easy_install bson” installs a third-party package that is incompatible with PyMongo.
PyMongo has no required dependencies.
3、还好最后安装最新的mongoengine,解决了这个问题。