Skip to content

[tips] Fresh installation on Ubuntu

Mingwei Zhang edited this page Jul 24, 2019 · 5 revisions

Necessary libs:

sudo apt install autoconf libtool build-essential zlib1g-dev libbz2-dev libcurl4-openssl-dev 

Wandio installation:

mkdir ~/src
cd ~/src/
curl -O https://research.wand.net.nz/software/wandio/wandio-4.2.1.tar.gz
tar zxf wandio-4.2.1.tar.gz
cd wandio-4.2.1
./configure
make
sudo make install
sudo ldconfig

Libbgpstream

For the simplest build, you should use the following configure command

./autogen.sh
./configure --without-transport-kafka --without-kafka --without-betabmp
make
make check
sudo make install
sudo ldconfig

pybgpstream

python setup.py build
python setup.py install
Clone this wiki locally