Skip to content

Instantly share code, notes, and snippets.

@yuraloginoff
Created May 23, 2022 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuraloginoff/44910c751b50fa511bc245f78918dc35 to your computer and use it in GitHub Desktop.
Save yuraloginoff/44910c751b50fa511bc245f78918dc35 to your computer and use it in GitHub Desktop.
Go install Ubunto
#https://go.dev/doc/install
curl -OL https://go.dev/dl/go1.18.2.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.2.linux-amd64.tar.gz
export PATH="${PATH}:/usr/local/go/bin"
export PATH="$PATH:$(go env GOPATH)/bin"
export GOPATH="$(go env GOPATH)"
go version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment