1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

go-install: add page (#7111)

This commit is contained in:
endorama 2021-12-05 22:41:27 +01:00 committed by GitHub
parent a7c60a0e91
commit 6a48a5a31a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
# 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}}`