1. 程式人生 > >Python-MongoDB的驅動安裝、升級

Python-MongoDB的驅動安裝、升級

指定版本 ati class str strong 指定 pypi sharp package

安裝pip,並通過此來安裝pymongo–Python mongodb驅動

1、下載pip安裝包,下載地址:http://pypi.python.org/packages/source/p/pip/pip-1.0.2.tar.gz#md5=47ec6ff3f6d962696fe08d4c8264ad49

2、解壓安裝:

tar -zxf pip.1.0.2.tar.gz
cd pip.1.0.2
python setup.py install

3、安裝pymongo驅動

pip install pymongo

4、安裝指定版本的pymongo驅動

pip install pymongo==3.1.1

5、升級pymongo驅動

pip install --upgrade pymongo

參考資料:http://api.mongodb.com/python/current/installation.html

Python-MongoDB的驅動安裝、升級