在Ubuntu 14.04 64bit上安裝python mongoDB模組

來源:互聯網
上載者:User
需要先安裝python和MongoDB, 其中MongoDB的安裝參考前面的部落格文章.

按照官方說法, 推薦使用pip來安裝MongoDB的python驅動pymongo

首先需求安裝pip, 可能需要順帶安裝python-dev
sudo apt-get install python-dev pip

安裝MongoDB的Python驅動
pip install pymongo
更新pymongo

pip --upgrade pymongo



使用下面的python程式mongodb_test.py測試

#!/usr/bin/env python#encoding: utf-8import pymongoimport randomconn = pymongo.Connection("127.0.0.1", 27017)db = conn.mydb #you must create the database mydb in advance#db.authenticate("taoyx", "123") #使用者認證db.user.drop() #刪除集合userdb.user.save({'id':1, 'name':'peter', 'sex':'male'}) #插入一條資料#迴圈插入一組數組for i in range(2, 10):    name = random.choice(['steve', 'tom', 'owen', 'sally', 'alice'])    sex = random.choice(['male', 'female'])    db.user.insert({'id':i, 'name':name, 'sex':sex})content = db.user.find()#列印所有資料for i in content:    print i

測試結果如下


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.