This is an automated email from the ASF dual-hosted git repository. lostluck pushed a commit to branch lostluck-patch-3 in repository https://gitbox.apache.org/repos/asf/beam.git
commit b1623226e6779a02dc780b8f6d814482b7a63d43 Author: Robert Burke <[email protected]> AuthorDate: Tue Oct 18 08:32:09 2022 -0700 Add Go usage instructions to download page. --- website/www/site/content/en/get-started/downloads.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/www/site/content/en/get-started/downloads.md b/website/www/site/content/en/get-started/downloads.md index 522ad829a07..bb83b9cd987 100644 --- a/website/www/site/content/en/get-started/downloads.md +++ b/website/www/site/content/en/get-started/downloads.md @@ -53,6 +53,14 @@ Additionally, you may want to depend on additional SDK modules, such as IO connectors or other extensions, and additional runners to execute your pipeline at scale. +The Go SDK is accessible via Go Modules and calling `go get` from a module subdirectory: + + go get github.com/apache/beam/sdks/v2/go/pkg/beam + +Specific versions can be depended on similarly: + + go get github.com/apache/beam/sdks/v2@v{{< param release_latest >}}/go/pkg/beam + ## Downloading source code You can download the source code package for a release from the links in the
