You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
9 years ago
|
Library Requirements
|
||
|
--------------------
|
||
9 years ago
|
|
||
9 years ago
|
You will need several development libraries:
|
||
8 years ago
|
* libsqlite3: for database support.
|
||
8 years ago
|
* libgmp: for secp256k1
|
||
8 years ago
|
|
||
|
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
|
||
9 years ago
|
|
||
9 years ago
|
You will also need a version of bitcoind with segregated witness support,
|
||
|
such as the 0.13 or above.
|
||
9 years ago
|
|
||
7 years ago
|
To Build on Ubuntu 15.10 or above
|
||
9 years ago
|
---------------------
|
||
|
|
||
|
Get dependencies:
|
||
|
```
|
||
7 years ago
|
sudo apt-get install -y autoconf build-essential git libtool libgmp-dev libsqlite3-dev python3 net-tools
|
||
7 years ago
|
```
|
||
|
|
||
|
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
|
||
8 years ago
|
```
|
||
|
|
||
|
For development or running tests, get additional dependencies:
|
||
|
```
|
||
7 years ago
|
sudo apt-get install -y asciidoc valgrind python3-pip
|
||
|
sudo pip3 install python-bitcoinlib
|
||
9 years ago
|
```
|
||
|
|
||
8 years ago
|
Clone lightning:
|
||
9 years ago
|
```
|
||
|
git clone https://github.com/ElementsProject/lightning.git
|
||
|
cd lightning
|
||
|
```
|
||
|
|
||
|
Build lightning:
|
||
|
```
|
||
|
make
|
||
|
```
|
||
|
|
||
|
Running lightning:
|
||
|
```
|
||
7 years ago
|
bitcoind &
|
||
7 years ago
|
./lightningd &
|
||
|
./cli/lightning-cli help
|
||
9 years ago
|
```
|
||
|
**Note**: You may need to include `testnet=1` in `bitcoin.conf`
|
||
|
|