Skip to content

Commit 5738585

Browse files
Merge pull request #2212 from criadoperez/fix/20231003b
Updated GO instructions
2 parents 4f4dbf5 + 4a569f3 commit 5738585

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

nodes/lite-nodes/spin-up-a-lite-node.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,15 @@ To build the lite-node, you’ll need some specific software. Run the following
3636
sudo apt install mesa-opencl-icd ocl-icd-opencl-dev gcc git bzr jq pkg-config curl clang build-essential hwloc libhwloc-dev wget -y
3737
```
3838

39-
2. Install Go and add `/usr/local/go/bin` to your `$PATH` variable:
39+
2. [Install Go](https://go.dev/doc/install) and add `/usr/local/go/bin` to your `$PATH` variable:
4040

4141
```sh
42-
wget -c https://golang.org/dl/go1.18.8.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local
42+
wget https://go.dev/dl/go1.21.1.linux-amd64.tar.gz
43+
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz
4344
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc && source ~/.bashrc
4445
```
4546

46-
3. Install Rust and source the `~/.cargo/env` config file:
47+
3. [Install Rust](https://www.rust-lang.org/tools/install) and source the `~/.cargo/env` config file:
4748

4849
```sh
4950
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

0 commit comments

Comments
 (0)