Home > database >  Go: /usr/local/go/bin does not exist on CentOS 7.9
Go: /usr/local/go/bin does not exist on CentOS 7.9

Time:11-18

I'm on a CentOS 7.9 virtual machine and I'm trying to install Go following this procedure (rif. enter image description here

Any suggestion will be appreciated and thank you in advance

CodePudding user response:

Looks like you are downloading the source, not the binary. You should be doing

wget https://go.dev/dl/go1.19.3.linux-amd64.tar.gz

not

wget https://go.dev/dl/go1.19.3.src.tar.gz
  • Related