Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

[Doc] Add Go / dependencies installation instructions #561

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

```
Expand Down