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:
parent
a7c60a0e91
commit
6a48a5a31a
1 changed files with 20 additions and 0 deletions
20
pages/common/go-install.md
Normal file
20
pages/common/go-install.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue