mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 18:57:06 +01:00
doc/INSTALL.md: fix up Fedora instructions.
We need sudo on all the commands, and we have more dependencies (esp. if we want to do development). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
14a5cbb820
commit
1fc9770cfe
1 changed files with 6 additions and 4 deletions
|
@ -75,10 +75,11 @@ OS version: Fedora 27 or above
|
||||||
Get dependencies:
|
Get dependencies:
|
||||||
```
|
```
|
||||||
$ sudo dnf update -y && \
|
$ sudo dnf update -y && \
|
||||||
dnf groupinstall -y \
|
sudo dnf groupinstall -y \
|
||||||
'C Development Tools and Libraries' \
|
'C Development Tools and Libraries' \
|
||||||
'Development Tools' && \
|
'Development Tools' && \
|
||||||
dnf install -y \
|
sudo dnf install -y \
|
||||||
|
asciidoc \
|
||||||
clang \
|
clang \
|
||||||
gmp-devel \
|
gmp-devel \
|
||||||
libsq3-devel \
|
libsq3-devel \
|
||||||
|
@ -89,8 +90,9 @@ $ sudo dnf update -y && \
|
||||||
net-tools \
|
net-tools \
|
||||||
net-tools \
|
net-tools \
|
||||||
valgrind \
|
valgrind \
|
||||||
wget && \
|
wget \
|
||||||
dnf clean all
|
zlib-devel && \
|
||||||
|
sudo dnf clean all
|
||||||
```
|
```
|
||||||
|
|
||||||
Make sure you have [bitcoind](https://github.com/bitcoin/bitcoin) available to run
|
Make sure you have [bitcoind](https://github.com/bitcoin/bitcoin) available to run
|
||||||
|
|
Loading…
Add table
Reference in a new issue