From e8c8fd4195d6137f932da1637d2e3ff98e537bb2 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 17 Feb 2025 16:04:23 +0000 Subject: [PATCH] docs: update bitcoin core install docs Changelog-None Signed-off-by: fanquake --- doc/getting-started/getting-started/installation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/getting-started/getting-started/installation.md b/doc/getting-started/getting-started/installation.md index 06884557b..0d1ed9f23 100644 --- a/doc/getting-started/getting-started/installation.md +++ b/doc/getting-started/getting-started/installation.md @@ -359,12 +359,12 @@ pip install poetry If you don't have bitcoind installed locally you'll need to install that as well: ```shell -brew install berkeley-db4 boost miniupnpc pkg-config libevent +brew install boost cmake pkg-config libevent git clone https://github.com/bitcoin/bitcoin cd bitcoin -./autogen.sh -./configure -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 ``` Clone lightning: