2019-02-08 16:06:34 +01:00
Install
=======
2018-03-21 20:40:12 +01:00
1. [Library Requirements ](#library-requirements )
2. [Ubuntu ](#to-build-on-ubuntu )
3. [Fedora ](#to-build-on-fedora )
4. [FreeBSD ](#to-build-on-freebsd )
5. [NixOS ](#to-build-on-nixos )
2018-03-23 15:37:50 +01:00
6. [macOS ](#to-build-on-macos )
7. [Android ](#to-cross-compile-for-android )
2018-04-03 16:10:13 +02:00
8. [Raspberry Pi ](#to-cross-compile-for-raspberry-pi )
2018-07-02 13:19:26 +02:00
9. [Armbian ](#to-compile-for-armbian )
10. [Additional steps ](#additional-steps )
2018-03-21 20:40:12 +01:00
2016-03-16 06:36:17 +01:00
Library Requirements
--------------------
2016-02-25 05:55:00 +01:00
2016-03-16 06:36:17 +01:00
You will need several development libraries:
2016-08-18 06:55:13 +02:00
* libsqlite3: for database support.
2016-08-19 03:35:32 +02:00
* libgmp: for secp256k1
2018-06-04 06:28:02 +02:00
* zlib: for compression routines.
2017-04-04 08:02:57 +02:00
For actually doing development and running the tests, you will also need:
* pip3: to install python-bitcoinlib
* valgrind: for extra debugging checks
2016-03-16 06:36:17 +01:00
2019-08-09 08:44:01 +02:00
You will also need a version of bitcoind with segregated witness and `estimatesmartfee` economical node, such as the 0.16 or above.
2016-05-26 07:55:24 +02:00
2018-03-21 20:40:12 +01:00
To Build on Ubuntu
2016-08-13 03:09:32 +02:00
---------------------
2018-03-21 20:40:12 +01:00
OS version: Ubuntu 15.10 or above
2016-08-13 03:09:32 +02:00
Get dependencies:
2018-03-01 15:05:52 +01:00
2018-04-22 12:10:09 +02:00
sudo apt-get update
2018-03-01 15:05:52 +01:00
sudo apt-get install -y \
autoconf automake build-essential git libtool libgmp-dev \
2019-08-09 00:35:52 +02:00
libsqlite3-dev python python3 python3-mako net-tools zlib1g-dev libsodium-dev \
2019-09-09 23:27:20 +02:00
git gettext
2017-08-10 16:09:02 +02:00
2018-03-01 14:58:48 +01:00
If you don't have Bitcoin installed locally you'll need to install that
as well:
2018-03-01 15:05:52 +01:00
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 08:02:57 +02:00
2017-01-11 00:12:26 +01:00
Clone lightning:
2018-03-01 15:05:52 +01:00
git clone https://github.com/ElementsProject/lightning.git
cd lightning
2019-09-25 14:52:54 +02:00
For development or running tests, get additional dependencies:
2019-09-25 17:12:47 +02:00
sudo apt-get install -y valgrind python3-pip libpq-dev
2019-09-25 14:52:54 +02:00
sudo pip3 install -r tests/requirements.txt -r doc/requirements.txt
2016-08-13 03:09:32 +02:00
Build lightning:
2018-03-01 15:05:52 +01:00
2018-06-21 05:24:37 +02:00
./configure
2018-03-01 15:05:52 +01:00
make
2019-09-06 23:44:39 +02:00
sudo make install
2016-08-13 03:09:32 +02:00
Running lightning:
2018-03-01 15:05:52 +01:00
bitcoind &
./lightningd/lightningd &
./cli/lightning-cli help
2016-08-13 03:09:32 +02:00
**Note**: You may need to include `testnet=1` in `bitcoin.conf`
2018-03-21 20:40:12 +01:00
To Build on Fedora
2018-01-22 20:31:56 +01:00
---------------------
2018-03-21 20:40:12 +01:00
OS version: Fedora 27 or above
Get dependencies:
```
$ sudo dnf update -y & & \
2018-06-21 03:57:39 +02:00
sudo dnf groupinstall -y \
2018-03-21 20:40:12 +01:00
'C Development Tools and Libraries' \
'Development Tools' & & \
2018-06-21 03:57:39 +02:00
sudo dnf install -y \
2018-03-21 20:40:12 +01:00
clang \
2019-09-09 23:27:20 +02:00
gettext \
2019-08-09 00:35:52 +02:00
git \
2018-03-21 20:40:12 +01:00
gmp-devel \
libsq3-devel \
python2-devel \
python3-devel \
python3-pip \
python3-setuptools \
net-tools \
net-tools \
valgrind \
2018-06-21 03:57:39 +02:00
wget \
2019-02-07 21:36:50 +01:00
zlib-devel \
libsodium-devel & & \
2018-06-21 03:57:39 +02:00
sudo dnf clean all
2018-03-21 20:40:12 +01:00
```
Make sure you have [bitcoind ](https://github.com/bitcoin/bitcoin ) available to run
Clone lightning:
```
$ git clone https://github.com/ElementsProject/lightning.git
$ cd lightning
```
Build and install lightning:
```
2018-06-21 05:24:37 +02:00
$lightning> ./configure
2018-03-21 20:40:12 +01:00
$lightning> make
$lightning> sudo make install
```
Running lightning (mainnet):
```
$ bitcoind &
$ lightningd --network=bitcoin
```
Running lightning on testnet:
```
$ bitcoind -testnet &
$ lightningd --network=testnet
```
To Build on FreeBSD
---------------------
OS version: FreeBSD 11.1-RELEASE or above
2018-01-22 20:31:56 +01:00
Get dependencies:
2018-03-01 15:05:52 +01:00
# pkg install -y \
2019-09-09 23:27:20 +02:00
autoconf automake gettext git gmp gmake libtool python python3 sqlite3 libsodium py36-mako bash
2018-01-22 20:31:56 +01:00
2018-03-01 14:58:48 +01:00
If you don't have Bitcoin installed locally you'll need to install that
as well:
2018-03-01 15:05:52 +01:00
# pkg install -y bitcoin-daemon bitcoin-utils
2018-01-22 20:31:56 +01:00
Clone lightning:
2018-03-01 15:05:52 +01:00
$ git clone https://github.com/ElementsProject/lightning.git
$ cd lightning
2018-01-22 20:31:56 +01:00
Build lightning:
2018-03-01 15:05:52 +01:00
2018-06-21 05:24:37 +02:00
$ ./configure
2018-03-01 15:05:52 +01:00
$ gmake
2018-03-21 20:40:12 +01:00
$ gmake install
2018-01-22 20:31:56 +01:00
Running lightning:
2018-03-01 14:58:48 +01:00
**Note**: Edit your `/usr/local/etc/bitcoin.conf` to include
`rpcuser=<foo>` and `rpcpassword=<bar>` first, you may also need to
include `testnet=1`
2018-01-22 20:31:56 +01:00
2018-03-01 15:05:52 +01:00
# service bitcoind start
$ ./lightningd/lightningd &
$ ./cli/lightning-cli help
2018-01-22 23:45:00 +01:00
2018-03-21 20:40:12 +01:00
To Build on NixOS
2018-01-22 23:45:00 +01:00
--------------------
Use nix-shell launch a shell with a full clightning dev environment:
```
$ nix-shell -Q -p gdb sqlite autoconf git clang libtool gmp sqlite autoconf \
2019-02-07 21:36:50 +01:00
autogen automake libsodium 'python3.withPackages (p: [p.bitcoinlib])' \
2019-08-29 19:33:52 +02:00
valgrind --run make
2018-01-22 23:45:00 +01:00
```
2018-02-26 12:48:57 +01:00
2018-03-23 15:37:50 +01:00
To Build on macOS
2018-03-22 13:41:29 +01:00
---------------------
2019-02-05 05:55:40 +01:00
Assuming you have Xcode and Homebrew installed. Install dependencies:
2018-03-22 13:41:29 +01:00
2019-09-12 23:08:04 +02:00
$ brew install autoconf automake libtool python3 gmp gnu-sed gettext
$ ln -s /usr/local/Cellar/gettext/0.20.1/bin/xgettext /usr/local/opt
$ export PATH="/usr/local/opt:$PATH"
If you need SQLite (or get a SQLite mismatch build error):
$ brew install sqlite
$ export LDFLAGS="-L/usr/local/opt/sqlite/lib"
$ export CPPFLAGS="-I/usr/local/opt/sqlite/include"
If you need Python 3.x for mako (or get a mako build error):
$ brew install pyenv
$ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.bash_profile
$ source ~/.bash_profile
$ pyenv install 3.7.4
$ pip install --upgrade pip
2018-03-22 13:41:29 +01:00
If you don't have bitcoind installed locally you'll need to install that
as well:
2019-02-07 21:36:50 +01:00
$ brew install berkeley-db4 boost miniupnpc openssl pkg-config libevent libsodium
2018-03-22 13:41:29 +01:00
$ git clone https://github.com/bitcoin/bitcoin
$ cd bitcoin
$ ./autogen.sh
$ ./configure
2019-02-05 05:55:40 +01:00
$ make src/bitcoind src/bitcoin-cli & & make install
2018-03-22 13:41:29 +01:00
Clone lightning:
$ git clone https://github.com/ElementsProject/lightning.git
$ cd lightning
2019-09-12 23:08:04 +02:00
Configure Python 3.x & get mako:
$ pyenv local 3.7.4
$ pip install mako
2018-03-22 13:41:29 +01:00
Build lightning:
2018-06-21 05:24:37 +02:00
$ ./configure
2018-03-22 13:41:29 +01:00
$ make
Running lightning:
**Note**: Edit your `~/Library/Application\ Support/Bitcoin/bitcoin.conf`
to include `rpcuser=<foo>` and `rpcpassword=<bar>` first, you may also
need to include `testnet=1`
bitcoind &
./lightningd/lightningd &
./cli/lightning-cli help
2018-02-26 13:33:35 +01:00
To cross-compile for Android
2018-02-26 12:48:57 +01:00
--------------------
2018-03-01 14:58:48 +01:00
Make a standalone toolchain as per
https://developer.android.com/ndk/guides/standalone_toolchain.html.
For c-lightning you must target an API level of 24 or higher.
2018-02-26 12:48:57 +01:00
2018-03-01 14:58:48 +01:00
Depending on your toolchain location and target arch, source env variables
such as:
2018-02-26 12:48:57 +01:00
2018-03-01 15:05:52 +01:00
export PATH=$PATH:/path/to/android/toolchain/bin
# Change next line depending on target device arch
target_host=arm-linux-androideabi
export AR=$target_host-ar
export AS=$target_host-clang
export CC=$target_host-clang
export CXX=$target_host-clang++
export LD=$target_host-ld
export STRIP=$target_host-strip
2018-03-01 14:58:48 +01:00
2018-02-26 12:48:57 +01:00
Two makefile targets should not be cross-compiled so we specify a native CC:
2018-03-01 15:05:52 +01:00
make CC=clang clean ccan/tools/configurator/configurator
make clean -C ccan/ccan/cdump/tools \
& & make CC=clang -C ccan/ccan/cdump/tools
2018-03-01 14:58:48 +01:00
Install the `qemu-user` package.
This will allow you to properly configure
the build for the target device environment.
Build with:
2018-03-01 15:05:52 +01:00
2018-05-17 21:20:03 +02:00
BUILD=x86_64 MAKE_HOST=arm-linux-androideabi \
2018-03-01 15:05:52 +01:00
make PIE=1 DEVELOPER=0 \
CONFIGURATOR_CC="arm-linux-androideabi-clang -static"
2018-03-21 20:40:12 +01:00
2018-04-03 16:10:13 +02:00
To cross-compile for Raspberry Pi
--------------------
2018-12-13 09:18:55 +01:00
Obtain the [official Raspberry Pi toolchains ](https://github.com/raspberrypi/tools ).
This document assumes compilation will occur towards the Raspberry Pi 3
(arm-linux-gnueabihf as of Mar. 2018).
2018-04-03 16:10:13 +02:00
2018-12-13 09:18:55 +01:00
Depending on your toolchain location and target arch, source env variables
will need to be set. They can be set from the command line as such:
2018-04-03 16:10:13 +02:00
export PATH=$PATH:/path/to/arm-linux-gnueabihf/bin
# Change next line depending on specific Raspberry Pi device
target_host=arm-linux-gnueabihf
export AR=$target_host-ar
export AS=$target_host-as
export CC=$target_host-gcc
export CXX=$target_host-g++
export LD=$target_host-ld
export STRIP=$target_host-strip
2018-12-13 09:18:55 +01:00
Install the `qemu-user` package. This will allow you to properly configure the
build for the target device environment.
Config the arm elf interpreter prefix:
export QEMU_LD_PREFIX=/path/to/raspberry/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/arm-linux-gnueabihf/sysroot/
2018-04-03 16:10:13 +02:00
2018-12-13 09:18:55 +01:00
Obtain and install cross-compiled versions of sqlite3, gmp and zlib:
2018-04-03 16:10:13 +02:00
2018-12-13 09:18:55 +01:00
Download and build zlib:
wget https://zlib.net/zlib-1.2.11.tar.gz
tar xvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure --prefix=$QEMU_LD_PREFIX
make
make install
Download and build sqlite3:
wget https://www.sqlite.org/2018/sqlite-src-3260000.zip
unzip sqlite-src-3260000.zip
cd sqlite-src-3260000
./configure --enable-static --disable-readline --disable-threadsafe --disable-load-extension --host=$target_host --prefix=$QEMU_LD_PREFIX
make
make install
2018-04-03 16:10:13 +02:00
2018-12-13 09:18:55 +01:00
Download and build gmp:
wget https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz
tar xvf gmp-6.1.2.tar.xz
cd gmp-6.1.2
2019-02-09 00:57:18 +01:00
./configure --disable-assembly --host=$target_host --prefix=$QEMU_LD_PREFIX
2018-12-13 09:18:55 +01:00
make
make install
Then, build c-lightning with the following commands:
./configure
make
2018-04-03 16:10:13 +02:00
2018-07-02 13:19:26 +02:00
To compile for Armbian
--------------------
For all the other Pi devices out there, consider using [Armbian ](https://www.armbian.com ).
You can compile in `customize-image.sh` using the instructions for Ubuntu.
A working example that compiles both bitcoind and c-lightning for Armbian can
be found [here ](https://github.com/Sjors/armbian-bitcoin-core ).
2018-03-21 20:40:12 +01:00
Additional steps
--------------------
Go to [README ](https://github.com/ElementsProject/lightning/blob/master/README.md ) for more information how to create an address, add funds, connect to a node, etc.