Skip to content

Commit

Permalink
Merge pull request #1243 from jasonrandrews/review
Browse files Browse the repository at this point in the history
update golang version
  • Loading branch information
jasonrandrews authored Sep 11, 2024
2 parents 0bc7aea + d4ad9dc commit 1f5a9f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/install-guides/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ The easiest way to install Go for Ubuntu on Arm is to download a release, extrac
Download a Go release:

```bash { target="ubuntu:latest" }
wget https://go.dev/dl/go1.20.5.linux-arm64.tar.gz
wget https://go.dev/dl/go1.23.1.linux-arm64.tar.gz
```

Extract the release to `/usr/local/go`:

```bash { target="ubuntu:latest" }
sudo tar -C /usr/local -xzf ./go1.20.5.linux-arm64.tar.gz
sudo tar -C /usr/local -xzf ./go1.23.1.linux-arm64.tar.gz
```

Add the path to `go` in your `.bashrc` file.
Expand All @@ -72,7 +72,7 @@ go version
The output should print the version:

```output
go version go1.20.5 linux/arm64
go version go1.23.1 linux/arm64
```

You are ready to use the Go programming language on your Arm machine running Ubuntu.
You are ready to use the Go programming language on your Arm machine running Ubuntu.

0 comments on commit 1f5a9f7

Please sign in to comment.