From f748d8fc56edf7af1c31e5a9e5fed3e7efeed623 Mon Sep 17 00:00:00 2001 From: kaihsun Date: Sat, 2 Dec 2023 06:54:51 +0000 Subject: [PATCH] update --- docs/developer/quickstart.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/developer/quickstart.md b/docs/developer/quickstart.md index 8a47afdd0d..4313962f02 100644 --- a/docs/developer/quickstart.md +++ b/docs/developer/quickstart.md @@ -9,13 +9,13 @@ fully prepared development environment that allows you to contribute to the proj Follow these steps to set up your development environment. 1. Install: - - [Go](https://golang.org/doc/install) + - [Go](https://golang.org/doc/install) v1.21.0+ ```shell - # `go.mod` requires Go 1.21.3. - go install golang.org/dl/go1.21.3@latest - go1.21.3 download - 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) export PATH="$GOROOT/bin:$PATH" # Verify the installation. go version