1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 01:22:08 +02:00
tldr/pages/common/go-install.md
2021-12-05 21:41:27 +00:00

580 B

go install

Compile and install packages named by the import paths. More information: https://pkg.go.dev/cmd/go#hdr-Compile_and_install_packages_and_dependencies.

  • Compile and install the current package:

go install

  • Compile and install a specific local package:

go install {{path/to/package}}

  • Install the latest version of a program, ignoring go.mod in the current directory:

go install {{golang.org/x/tools/gopls}}@{{latest}}

  • Install a program at the version selected by go.mod in the current directory:

go install {{golang.org/x/tools/gopls}}