Skip to content

Commit

Permalink
doc: add tip on extracting binary release
Browse files Browse the repository at this point in the history
  • Loading branch information
m3dwards authored and rustyrussell committed Aug 31, 2023
1 parent e788f76 commit 5a4e6ec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion doc/getting-started/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ sudo snap install bitcoin-core
sudo ln -s /snap/bitcoin-core/current/bin/bitcoin{d,-cli} /usr/local/bin/
```

Then you can fetch a pre-compiled binary from the [releases](https://github.com/ElementsProject/lightning/releases) page on GitHub. Core Lightning provides binaries for both Ubuntu and Fedora distributions.
Then you can fetch a pre-compiled binary from the [releases](https://github.com/ElementsProject/lightning/releases) page on GitHub. Core Lightning provides binaries for both Ubuntu and Fedora distributions. Normally these binaries are extracted into /usr/local:

```shell
sudo tar -xvf <release>.tar.xz -C /usr/local --strip-components=2
```

You will need some Python packages if you want to use clnrest. Unfortunately there are some Python packages which are not packaged in Ubuntu, and so you will need to force installation of these (I recommend --user which will install them in your own .local directory, so at least you won't run the risk of breaking Python globally!).

Expand Down

0 comments on commit 5a4e6ec

Please sign in to comment.