Last active
December 14, 2015 09:38
-
-
Save jslatts/5066092 to your computer and use it in GitHub Desktop.
couchnode on ubuntu 12.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installing node couchbase driver | |
apt-get install build-essential | |
apt-get install autoconf | |
apt-get install libtool | |
apt-get install libev-dev | |
git clone git://github.com/couchbase/libcouchbase.git | |
./config/autorun.sh | |
./configure --disable-couchbasemock | |
make | |
make install | |
CPPFLAGS="-I/usr/local/include" | |
LDFLAGS="-L/usr/local/lib -Wl,-rpath,/usr/local/lib" | |
export CPPFLAGS LDFLAGS | |
cd /vagrant | |
npm install couchnode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment