2016-03-16 16:06:17 +10:30
|
|
|
Library Requirements
|
|
|
|
--------------------
|
2016-02-24 23:55:00 -05:00
|
|
|
|
2016-03-16 16:06:17 +10:30
|
|
|
You will need several development libraries:
|
2016-08-18 14:25:13 +09:30
|
|
|
* libsqlite3: for database support.
|
2016-08-19 11:05:32 +09:30
|
|
|
* libgmp: for secp256k1
|
2017-04-04 15:32:57 +09:30
|
|
|
|
|
|
|
For actually doing development and running the tests, you will also need:
|
|
|
|
* pip3: to install python-bitcoinlib
|
|
|
|
* asciidoc: for formatting the man pages (if you change them)
|
|
|
|
* valgrind: for extra debugging checks
|
2016-03-16 16:06:17 +10:30
|
|
|
|
2017-12-04 16:20:39 +10:30
|
|
|
You will also need a version of bitcoind with segregated witness and estimatesmartfee economical node, such as the 0.15 or above.
|
2016-05-26 15:25:24 +09:30
|
|
|
|
2017-08-29 01:29:01 +09:30
|
|
|
To Build on Ubuntu 15.10 or above
|
2016-08-12 21:09:32 -04:00
|
|
|
---------------------
|
|
|
|
|
|
|
|
Get dependencies:
|
|
|
|
```
|
2017-08-29 01:29:01 +09:30
|
|
|
sudo apt-get install -y autoconf build-essential git libtool libgmp-dev libsqlite3-dev python3 net-tools
|
2017-08-10 16:09:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
If you don't have Bitcoin installed locally you'll need to install that as well:
|
|
|
|
```
|
|
|
|
sudo apt-get install software-properties-common
|
|
|
|
sudo add-apt-repository ppa:bitcoin/bitcoin
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y bitcoind
|
2017-04-04 15:32:57 +09:30
|
|
|
```
|
|
|
|
|
|
|
|
For development or running tests, get additional dependencies:
|
|
|
|
```
|
2017-08-10 16:09:02 +02:00
|
|
|
sudo apt-get install -y asciidoc valgrind python3-pip
|
|
|
|
sudo pip3 install python-bitcoinlib
|
2016-08-12 21:09:32 -04:00
|
|
|
```
|
|
|
|
|
2017-01-11 09:42:26 +10:30
|
|
|
Clone lightning:
|
2016-08-12 21:09:32 -04:00
|
|
|
```
|
|
|
|
git clone https://github.com/ElementsProject/lightning.git
|
|
|
|
cd lightning
|
|
|
|
```
|
|
|
|
|
|
|
|
Build lightning:
|
|
|
|
```
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
|
|
|
Running lightning:
|
|
|
|
```
|
2017-08-10 16:09:02 +02:00
|
|
|
bitcoind &
|
2017-11-20 16:54:56 +07:00
|
|
|
./lightningd/lightningd &
|
2017-08-29 13:42:04 +09:30
|
|
|
./cli/lightning-cli help
|
2016-08-12 21:09:32 -04:00
|
|
|
```
|
|
|
|
**Note**: You may need to include `testnet=1` in `bitcoin.conf`
|
|
|
|
|