pymongo 安装

来源:互联网 发布:如何描述一个java项目 编辑:程序博客网 时间:2024/06/06 05:04
# Try it once, into python script run following statement# try.pyimport pymongo# If above statement didn't throw any exception then you need to install pymongo-2.4, if existing pymongo verion is 2.3#open terminal#First you need to uninstall old pymongo versionpip uninstall pymongo#Then use following commands to install pymongo-2.4wget http://pypi.python.org/packages/source/p/pymongo/pymongo-2.4.tar.gztar xzf pymongo-2.4.tar.gzcd pymongo-2.4python setup.py install
0 0
原创粉丝点击