Go known as ‘golang’, is the most popular programming language.Go is a compiled, statically typed programming language developed by Google.
We will install the go on the ubuntu 22.04 in this article.
Follow the steps below install Go on Ubuntu 22.04:
Using Ubuntu apt repository
Update packages list and type the below-mentioned command to install go on ubuntu 22.04 system
sudo apt update
sudo apt install golang
Confirm the installation of Go packages by pressing ‘y’ and hit the ‘Enter key. Go dependencies will be installed on your system.
Verify the installation to display the installed Go version on the terminal by running the following command:
go version
Go version go1.18.1 linux/amd64 has been installed on this system.