Skip to content

Instantly share code, notes, and snippets.

@lycancoin
Last active March 30, 2021 03:55
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 lycancoin/d4a3ffea46e007481c1e626417e2583d to your computer and use it in GitHub Desktop.
Save lycancoin/d4a3ffea46e007481c1e626417e2583d to your computer and use it in GitHub Desktop.
Compile Lycancoin on Ubuntu 18.04
Initial setup & dependencies
----------------------------
```
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libboost-all-dev libboost-program-options-dev
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libzmq3-dev software-properties-common libkrb5-dev
sudo apt-get install libqrencode-dev
sudo apt-get install libminiupnpc-dev
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
```
Download Lycancoin source code
------------------------------
```
cd ~
git clone https://github.com/lycancoin/lycancoin-release.git
```
Compile Lycancoin Daemon
-------------------------------
```
cd lycancoin-release/src
sudo make -f makefile.unix "USE_UPNP=-"
strip lycancoind
```
Compile Lycancoin QT
-------------------------------
```
cd lycancoin-release
qmake lycancoin-qt.pro
sudo make
```
Run Lycancoin Daemon/QT
----------------------------
```
sudo lycancoin-release/src/./lycancoind &
sudo lycancoin-release/./lycancoin-qt &
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment