Go is one of the latest open source programming languages that is used to do memory management safely and also helps in dealing with garbage collection gracefully. It is a statically typed language that can conveniently manage objects and hence provides a very efficient way of creating useful programs. This article shows you how you can install the Go language on an Ubuntu 20.04 system.
We will install Go language on Ubuntu by performing the following steps:
First, we will carry out a system update with the command shown below:
$ sudo apt-get update
After this system update, we are good to go with the installation of the Go language on our system which we can perform with the following command:
$ sudo apt-get install golang
The golang package contains the Go programming language compiler and tools. When this command is executing, you will be asked to provide confirmation by hitting the “Y” key as shown in the image below:
Once you will do that, the installation of the Go language will complete after a few minutes.
Confirm Go language installation by checking the version.
$ go version
You can see the version of the Go language installed on our system. Screenshot below:
Use this command to remove Go compiler from your system.
$ sudo apt-get purge --autoremove golang
Magento is a free and open-source e-commerce platform written in PHP. It is simple, easy…
ISPConfig is an open-source control panel that allows users to manage multiple servers from a…
As a Linux administrator, you may find it necessary to troubleshoot or test your Simple…
Ubuntu 24.04, like many modern Linux distributions, relies on the NetworkManager for managing network connections.…
Restic is a modern, open-source backup program designed for efficiency, security, and simplicity. It enables…
phpMyAdmin is a popular free tool written in PHP intended to administer MySQL and MariaDB…