snippetbashTip
go get — Add a dependency package, or download packages in legacy GOPATH mode. More information: <https://pkg
Viewed 0 times
dependencycommandcligo getdownloadaddpackagepackages
Problem
How to use the
go get command: Add a dependency package, or download packages in legacy GOPATH mode. More information: <https://pkg.go.dev/cmd/go#hdr-Add_dependencies_to_current_module_and_install_them>.Solution
go get — Add a dependency package, or download packages in legacy GOPATH mode. More information: <https://pkg.go.dev/cmd/go#hdr-Add_dependencies_to_current_module_and_install_them>.Add a specified package to
go.mod in module-mode or install the package in GOPATH-mode:go get {{example.com/pkg}}Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{v1.2.3}}Remove a specified package:
go get {{example.com/pkg}}@{{none}}Code Snippets
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode
go get {{example.com/pkg}}Modify the package with a given version in module-aware mode
go get {{example.com/pkg}}@{{v1.2.3}}Remove a specified package
go get {{example.com/pkg}}@{{none}}Context
tldr-pages: common/go get
Revisions (0)
No revisions yet.