From 31ba9875edfe2fe86d1de4a1ac34f7f4745c4fda Mon Sep 17 00:00:00 2001 From: sebasrivera96 Date: Fri, 8 Jun 2018 10:26:57 +0200 Subject: [PATCH] Update README.md to build Multiverso on Ubuntu 16.04 While building Multiverso locally, an error regarding the boosting libraries appeared. I realized that if you install libboost-dev and libboost-test-dev the library will build without any problem on Ubuntu 16.04. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e9ec62..91d7cf0 100755 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ For more details, please view our website [http://www.dmtk.io](http://www.dmtk.i Build ---------- -**Linux** (Tested on Ubuntu 14.04) +**Linux** (Tested on Ubuntu 14.04 & 16.04) ``` -sudo apt-get install libopenmpi-dev openmpi-bin build-essential cmake git +sudo apt-get install libopenmpi-dev openmpi-bin build-essential cmake git libboost-dev libboost-test-dev git clone https://github.com/Microsoft/multiverso.git --recursive && cd multiverso mkdir build && cd build cmake .. && make && sudo make install