您好,登錄后才能下訂單哦!
按照官網(https://github.com/mongodb/mongo-cxx-driver/wiki/Quickstart-Guide-(New-Driver))上說的,C++ driver內部使用了libbson和 MongoDB C driver。所以要安裝C++ driver,需要先安裝C driver。我的系統gcc版本4.8.5,cmake版本3.5.2,達到官網要求的安裝版本。
1.安裝automake, autoconf and libtool,這里全部yum安裝即可
yum -y install automake autoconf libtool
2.安裝C driver,按照官網(https://github.com/mongodb/mongo-c-driver)給的安裝方法安裝。這里我裝的是1.3.5版本。
wget https://github.com/mongodb/mongo-c-driver/releases/download/1.3.5/mongo-c-driver-1.3.5.tar.gz tar xzf mongo-c-driver-1.3.5.tar.gz cd mongo-c-driver-1.3.5 ./configure make make install
3.安裝C++ driver,按照官網(https://github.com/mongodb/mongo-cxx-driver/wiki/Quickstart-Guide-(New-Driver))給的安裝方法安裝。這里我裝的是3.0.1版本。
wget https://github.com/mongodb/mongo-cxx-driver/archive/r3.0.1.tar.gz tar xzf r3.0.1.tar.gz cd mongo-cxx-driver-r3.0.1/build #需要先安裝好git,yum -y install git,不然會報錯 PKG_CONFIG_PATH=/usr/local/lib/pkgconfig cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/ .. make make install
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。