File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
witnesses/setting-up-a-witness-node Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -7,22 +7,25 @@ Currently the Beatrice testnet has functionality for SON while the mainnet does
77The following dependencies are necessary for a clean install of Ubuntu 18.04 LTS:
88
99``` text
10+ sudo apt-get update
1011sudo apt-get -y install autoconf bash build-essential ca-certificates cmake \
1112 dnsutils doxygen git graphviz libbz2-dev libcurl4-openssl-dev \
1213 libncurses-dev libreadline-dev libssl-dev libtool libzmq3-dev \
13- locales ntp pkg-config wget
14+ locales ntp pkg-config wget autotools-dev libicu-dev python-dev
1415```
1516
1617### Build Boost 1.67.0 <a id =" build-boost-1-67-0 " ></a >
1718
1819``` text
1920mkdir $HOME/src
20- cd $HOME/srcexport BOOST_ROOT=$HOME/src/boost_1_67_0
21+ cd $HOME/src
22+ export BOOST_ROOT=$HOME/src/boost_1_67_0
2123sudo apt-get update
22- sudo apt-get install -y autotools-dev build-essential libbz2-dev libicu-dev python-dev
23- wget -c 'http://sourceforge.net/projects/boost/files/boost/1.67.0/boost_1_67_0.tar.bz2/download'\
24- -O boost_1_67_0.tar.bz2
25- tar xjf boost_1_67_0.tar.bz2cd boost_1_67_0/
24+ sudo apt-get install -y autotools-dev libicu-dev python-dev
25+ wget -c 'http://sourceforge.net/projects/boost/files/boost/1.67.0/boost_1_67_0.tar.bz2/download' \
26+ -O boost_1_67_0.tar.bz2
27+ tar xjf boost_1_67_0.tar.bz2
28+ cd boost_1_67_0/
2629./bootstrap.sh "--prefix=$BOOST_ROOT"
2730./b2 install
2831```
You can’t perform that action at this time.
0 commit comments