Files
tldr/pages.tr/common/go-install.md
2022-10-31 07:06:43 -03:00

21 lines
572 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# go install
> İçe aktarım yollarıyla isimlendirilen paketleri derle ve indir.
> Daha fazla bilgi için: <https://pkg.go.dev/cmd/go#hdr-Compile_and_install_packages_and_dependencies>.
- Mevcut paketi derle ve indir:
`go install`
- Belirtilen yerel paketi derle ve indir:
`go install {{örnek/konum/paket}}`
- Bir programın son sürümünü mevcut dizindeki `go.mod`'u yoksayarak indir:
`go install {{golang.org/x/tools/gopls}}@{{latest}}`
- Bir programın mevcut dizindeki `go.mod`'da belirtilen sürümünü indir:
`go install {{golang.org/x/tools/gopls}}`