LinuxCommandLibrary

go-install

Compile and install packages named by the import paths.

TLDR

Compile and install the current package

$ go install
copy


Compile and install a specific local package
$ go install [path/to/package]
copy


Install the latest version of a program, ignoring go.mod in the current directory
$ go install [golang.org/x/tools/gopls]@[latest]
copy


Install a program at the version selected by go.mod in the current directory
$ go install [golang.org/x/tools/gopls]
copy

SYNOPSIS

go install [ build flags ] [ packages ]

DESCRIPTION

Install compiles and installs the packages named by the import paths, along with their dependencies.

For more about the build flags, see go-build(1).

For more about specifying packages, see go-packages(7).

SEE ALSO

go-build(1), go-get(1), go-clean(1).

AUTHOR

This manual page was written by Michael Stapelberg <stapelberg@debian.org>, for the Debian project (and may be used by others).

Copied to clipboard