go: 'go install' requires a version when current directory is not in a module
Try 'go install github.com/vulkan-go/vulkan@latest' to install the latest version
simon@fedora:~$ go install github.com/vulkan-go/vulkan@latest
package github.com/vulkan-go/vulkan is not a main package
simon@fedora:~$ go get github.com/vulkan-go/vulkan@latest
go: go.mod file not found in current directory or any parent directory.
'go get' is no longer supported outside a module.
To build and install a command, use 'go install' with a version,
like 'go install example.com/cmd@latest'
For more information, see https://golang.org/doc/go-get-install-deprecation
or run 'go help get' or 'go help install'.
simon@fedora:~$
so, i guess, i can make a dummy package that imports what i want, then init + tidy + get and erase it all! if this is it, then a simple script is needed, but surely im missing something.
to me you need a lib package, with its documentation, first, in order to try/test alternatives.