Author

Topic: Little guide to Build Armory from Source on clean system (Read 876 times)

full member
Activity: 209
Merit: 100
Radix-The Decentralized Finance Protocol
libqt4-dev required as well

Code:
sudo apt-get install libqt4-dev

With the steps I build many times ( Except the typos ).
newbie
Activity: 16
Merit: 0
libqt4-dev required as well

Code:
sudo apt-get install libqt4-dev
full member
Activity: 209
Merit: 100
Radix-The Decentralized Finance Protocol
A Little guide to build Armory from source on a clean Ubuntu system:

Code:
sudo apt-get update && apt-get upgrade -y
sudo apt-get install git autoconf libtool libqt4-dev libqtcore4 pyqt4-dev-tools swig g++ python-dev python-psutil libqtcore4 libqtcore4 pkg-config -y
git clone https://github.com/goatpig/BitcoinArmory.git
cd BitcoinArmory/
git checkout testing
git submodule init
git submodule update
./autogen.sh
./configure
make -j$(grep -c ^processor /proc/cpuinfo)
make install

#Install Bitcoind ( In this example core but will work with BU/Classic and probably many other nodes also )
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sud apt-get install bitcoind

#Run Bitcoind:
bitcoind -daemon

#Now wait till Bitcoind is synced and start Armory.
Jump to: