How to install Go on Ubuntu 20.04 LTS

When you go to the official Go installation page you see the following: Download the archive with the current stable version of Go and then extract it to the /usr/local folder. Run the following command in the terminal: rm -rf /usr/local/go && tar -C /usr/local -xzf go1.17.5.linux-amd64.tar.gz Add /usr/local/go/bin to the PATH environment variable. To …

How to install Go on Ubuntu 20.04 LTS Read More »