Fixed dead link in Book -> Installing Geth (#995)

This commit is contained in:
Shankar Subramanian
2023-01-23 16:18:51 -05:00
committed by GitHub
parent 865367fe46
commit e505c5f670

View File

@ -1,6 +1,6 @@
## Installation ## Installation
To use Reth, you must first install Geth. You can find instructions for installing Geth at the following link: https://geth.ethereum.org/docs/install-and-build/installing-geth. To use Reth, you must first install Geth. You can find instructions for installing Geth at the following link: [https://geth.ethereum.org/docs/install-and-build/installing-geth](https://geth.ethereum.org/docs/getting-started/installing-geth).
### Ubuntu ### Ubuntu
Building the source Building the source
@ -58,4 +58,4 @@ cargo build --all
* Alternatively, you can use the following one-liner to install and build reth: * Alternatively, you can use the following one-liner to install and build reth:
```bash ```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh && brew install llvm pkg-config && git clone https://github.com/paradigmxyz/reth && cd reth && cargo build --all && ./target/debug/reth curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh && brew install llvm pkg-config && git clone https://github.com/paradigmxyz/reth && cd reth && cargo build --all && ./target/debug/reth
``` ```