Thanks guys. Inherited this system, and basic "go" worked fine, but had
some GOPATH/PATH issues. Now seems good! - Ken
On Thu, Aug 9, 2018 at 10:29 PM 'Bryan Mills' via golang-nuts <
golang-nuts@googlegroups.com> wrote:
> Did you happen to install it using another go1.11 beta build in module
> mo
Hi Ken,
If "go get" succeeded, then probably this put something in
$GOPATH/bin/go1.11beta3, but bash being unable to find it means that
$GOPATH/bin is not in your $PATH environment variable; so bash can't find
it. Try "$GOPATH/bin/go1.11beta3 download" or try adding $GOPATH/bin to
your $PATH, then