We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d15f5a9 commit e8c8fd4Copy full SHA for e8c8fd4
doc/getting-started/getting-started/installation.md
@@ -359,12 +359,12 @@ pip install poetry
359
If you don't have bitcoind installed locally you'll need to install that as well:
360
361
```shell
362
-brew install berkeley-db4 boost miniupnpc pkg-config libevent
+brew install boost cmake pkg-config libevent
363
git clone https://github.com/bitcoin/bitcoin
364
cd bitcoin
365
-./autogen.sh
366
-./configure
367
-make src/bitcoind src/bitcoin-cli && make install
+cmake -B build
+cmake --build build --target bitcoind bitcoin-cli
+cmake --install build --component bitcoind && cmake --install build --component bitcoin-cli
368
```
369
370
Clone lightning:
0 commit comments