次のように、公式 Web サイトから mongo-c-driver を取得します。
$git https://github.com/mongodb/mongo-c-driver.git
$cd mongo-c-driver
$./autogen.sh
$ make
$ sudo make install
Deal.c:2:19: fatal error: mongo.h: No such file or directory
ただし、「Deal.c」という名前の C ファイルを次のように実行すると、次のようになります。
gcc -o Deal Deal.c -l /usr/local/include -L /usr/local/lib -lmongoc
Error:#include "mongo.h"
^ compilation terminated.
私のシステムのバージョン: Ubuntu 13.10 です