From c85e57e06ab2a5bc33fc518a01043eb0cf79069e Mon Sep 17 00:00:00 2001 From: kaihsun Date: Sat, 13 May 2023 16:29:17 +0000 Subject: [PATCH] improve doc --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 6e90782d4..8f7f6691f 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,22 @@ from the propeller repo. Install ------- + +Flytepropeller requires Go 1.19, as specified in the `go.mod` file. To switch to Go 1.19, you can use the following commands: + +``` + $ go install golang.org/dl/go1.19@latest + $ go1.19 download + $ export GOROOT=$(go1.19 env GOROOT) + $ export PATH="$GOROOT/bin:$PATH" +``` + +To install the dependencies listed in the `go.mod` file, you can use the following command: + +``` + $ go mod tidy +``` + This command will install kubectl-flyte and flytepropeller to `~/go/bin` ```