Golang packaging

From wikinotes
Revision as of 02:32, 19 June 2022 by Will (talk | contribs)

Locations

~/go/bin default $GOBIN path, where go executables are installed

Install Executable

Starting in golang-1.18, go install is used to install executables.

go install github.com/appliedgocode/goman@latest  # install latest goman executable

Module Requirements

See go.mod file .