The follwing tutorial will explain how to get started with n3rv, having a freshly installed Debian or ubuntu system.
Our first step will be to install the required tools and dependancies to build n3rv
sudo apt-get install build-essential cmake git libzmq5-dev libevent-dev
Then we will fetch the n3rv source code from Github:
git clone https://github.com/n3rvcpp/n3rv
cd n3rv
cmake .
make
If the build phase was succesfull, you can now install n3rv:
sudo make install
The libs are installed by default in /usr/local/lib (libn3rv.so and libn3rvhttp.so) The include files are in /usr/local/include/n3rv
That is all, you’re ready to go with n3rv !