Skip to content

Commit f748d8f

Browse files
committed
update
1 parent 313da77 commit f748d8f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/developer/quickstart.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ fully prepared development environment that allows you to contribute to the proj
99
Follow these steps to set up your development environment.
1010

1111
1. Install:
12-
- [Go](https://golang.org/doc/install)
12+
- [Go](https://golang.org/doc/install) v1.21.0+
1313

1414
```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)
15+
# Install Go X.Y.Z, which needs to be version 1.21.0 or higher (e.g. 1.21.4).
16+
go install golang.org/dl/goX.Y.Z@latest
17+
goX.Y.Z download
18+
export GOROOT=$(goX.Y.Z env GOROOT)
1919
export PATH="$GOROOT/bin:$PATH"
2020
# Verify the installation.
2121
go version

0 commit comments

Comments
 (0)