Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing ubuntu packages #243

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions docs/compiling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,21 @@ Ubuntu 16.04

sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt install cmake libtool autoconf libboost-filesystem-dev libboost-iostreams-dev \
sudo apt install libtool autoconf libboost-filesystem-dev libboost-iostreams-dev \
libboost-serialization-dev libboost-thread-dev libboost-test-dev libssl-dev libjsoncpp-dev \
libcurl4-openssl-dev libjsoncpp-dev libjsonrpccpp-dev libsnappy-dev zlib1g-dev libbz2-dev \
liblz4-dev libzstd-dev libjemalloc-dev libsparsehash-dev python3-dev python3-pip
liblz4-dev libzstd-dev libjemalloc-dev libsparsehash-dev python3-dev python3-pip \
git gcc-7 g++-7

# get recent cmake
git clone -b release https://gitlab.kitware.com/cmake/cmake.git
cd cmake
./bootstrap
make
make install
cd ..
# verify cmake version, should be >=3.13 now
cmake --version

git clone https://github.com/citp/BlockSci.git
cd BlockSci
Expand All @@ -36,7 +47,6 @@ Ubuntu 16.04

cd ..
CC=gcc-7 CXX=g++-7 sudo -H pip3 install -e blockscipy


Mac OS 10.13
--------------
Expand All @@ -55,4 +65,4 @@ Mac OS 10.13
sudo make install

cd ..
pip3 install -e blockscipy
pip3 install -e blockscipy