Skip to content

Instantly share code, notes, and snippets.

@brianonn
Created September 29, 2016 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianonn/f2c98cad2a33e646a9f9e25c26943f0c to your computer and use it in GitHub Desktop.
Save brianonn/f2c98cad2a33e646a9f9e25c26943f0c to your computer and use it in GitHub Desktop.
how to build bitcoin (0.13) on a new Ubuntu install
#!/bin/bash
# building bitcoin (for 0.13)
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev
sudo apt-get install libboost-program-options-dev libboost-test-dev libboost-thread-dev
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools
sudo apt-get install libprotobuf-dev protobuf-compiler libminiupnpc-dev libzmq3-dev libdb++-dev
sudo apt-get install git emacs
mkdir src
cd src
git clone https://github.com/bitcoin/bitcoin.git
cd bitcoin
./autogen.sh
./configure --enable-upnp-default --with-incompatible-bdb
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment