-
Notifications
You must be signed in to change notification settings - Fork 28
[tips] Fresh installation on Ubuntu
Mingwei Zhang edited this page Jul 24, 2019
·
5 revisions
sudo apt install autoconf libtool build-essential zlib1g-dev libbz2-dev libcurl4-openssl-dev
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
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
python setup.py build
python setup.py install