Install Go

[Solved] Install Go | Erlang - Code Explorer | yomemimo.com
Question : install golang

Answered by : elcharitas

wget https://dl.google.com/go/go1.17.linux-amd64.tar.gz
sudo tar -xvf go1.17.linux-amd64.tar.gz
sudo mv go /usr/local
sudo ln -s /usr/local/go/bin/* /usr/bin
rm go1.17.linux-amd64.tar.gz

Source : | Last Update : Fri, 04 Mar 22

Question : install go

Answered by : guillaume-schurck

wget https://dl.google.com/go/go1.18.linux-amd64.tar.gz
sudo tar -xvf go1.18.linux-amd64.tar.gz

Source : | Last Update : Thu, 24 Mar 22

Question : check go is installed mac

Answered by : sebastian-t-f

# in a shell/terminal
go version

Source : | Last Update : Tue, 08 Sep 20

Question : go install

Answered by : bang-bui

brew install go

Source : | Last Update : Sat, 17 Sep 22

Question : install golang

Answered by : omar-hamad

$ go version

Source : https://go.dev/doc/install | Last Update : Mon, 06 Jun 22

Answers related to install go

Code Explorer Popular Question For Erlang