Forrest logo
back to context overview

go-install

List of commands for go-install:

  • go-install:tldr:75cdc go-install: Compile and install the current package.
    $ go install
    try on your machine
    explain this command
  • go-install:tldr:b2056 go-install: Compile and install a specific local package.
    $ go install ${path-to-package}
    try on your machine
    explain this command
  • go-install:tldr:bf66a go-install: Install the latest version of a program, ignoring `go.mod` in the current directory.
    $ go install ${golang-org-x-tools-gopls}@${latest}
    try on your machine
    explain this command
back to context overview