gobin is a package manager for /go/bin
gobin runs go
to install, get available versions, get a version from a binary.
It does not store anything on disk itself.
For information about go modules, see https://go.dev/ref/mod.
- List installed packages.
- Check for updates.
- Install packages (like
go install
). - Uninstall packages (just remove binaries).
- Update outdated packages.
- Reinstall packages which was built with old version of go.
- JSON format output.
go install github.com/burik666/gobin@latest
Use gobin --help
for more information.
gobin install golang.org/x/tools/cmd/...
gobin install golang.org/x/tools/cmd/...@v0.1.7 -- -ldflags=-s
gobin list goimports
gobin list golang.org/x/tools/cmd/...
gobin upgrade golang.org/x/tools/cmd/...
gobin uninstall golang.org/x/tools/cmd/...
GPLv3