We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 313da77 commit f748d8fCopy full SHA for f748d8f
docs/developer/quickstart.md
@@ -9,13 +9,13 @@ fully prepared development environment that allows you to contribute to the proj
9
Follow these steps to set up your development environment.
10
11
1. Install:
12
- - [Go](https://golang.org/doc/install)
+ - [Go](https://golang.org/doc/install) v1.21.0+
13
14
```shell
15
- # `go.mod` requires Go 1.21.3.
16
- go install golang.org/dl/go1.21.3@latest
17
- go1.21.3 download
18
- export GOROOT=$(go1.21.3 env GOROOT)
+ # Install Go X.Y.Z, which needs to be version 1.21.0 or higher (e.g. 1.21.4).
+ go install golang.org/dl/goX.Y.Z@latest
+ goX.Y.Z download
+ export GOROOT=$(goX.Y.Z env GOROOT)
19
export PATH="$GOROOT/bin:$PATH"
20
# Verify the installation.
21
go version
0 commit comments