How To Install golang-1.14-src on Ubuntu 20.04

In this tutorial we learn how to install golang-1.14-src on Ubuntu 20.04. golang-1.14-src is Go programming language - source files Go programming language - source files

Introduction

In this tutorial we learn how to install golang-1.14-src on Ubuntu 20.04.

What is golang-1.14-src

golang-1.14-src is:

The Go programming language is an open source project to make programmers more productive. Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It’s a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language.

This package provides the Go programming language source files needed for cross-compilation.

Package: golang-1.14-src Architecture: amd64 Version: 1.14.2-1ubuntu1 Priority: optional Section: devel Source: golang-1.14 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Go Compiler Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 93531 Filename: pool/main/g/golang-1.14/golang-1.14-src_1.14.2-1ubuntu1_amd64.deb Size: 13256844 MD5sum: 79e555d4583fc3c6fc4f49b8a4e0547f SHA1: afac3a8e569fc972b813c3d0d8108725d46eec44 SHA256: 7cefb66ee8899f9deaee5eb96b3498dd5a3068b59fc1852e084ffc5665381ec3 Homepage: https://golang.org Description-en: Go programming language - source files The Go programming language is an open source project to make programmers more productive. Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It’s a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language.

This package provides the Go programming language source files needed for cross-compilation.

There are three methods to install golang-1.14-src on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install golang-1.14-src Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install golang-1.14-src using apt-get by running the following command:

sudo apt-get -y install golang-1.14-src

Install golang-1.14-src Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install golang-1.14-src using apt by running the following command:

sudo apt -y install golang-1.14-src

Install golang-1.14-src Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install golang-1.14-src using aptitude by running the following command:

sudo aptitude -y install golang-1.14-src

How To Uninstall golang-1.14-src on Ubuntu 20.04

To uninstall only the golang-1.14-src package we can use the following command:

sudo apt-get remove golang-1.14-src

Uninstall golang-1.14-src And Its Dependencies

To uninstall golang-1.14-src and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove golang-1.14-src

Remove golang-1.14-src Configurations and Data

To remove golang-1.14-src configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge golang-1.14-src

Remove golang-1.14-src configuration, data, and all of its dependencies

We can use the following command to remove golang-1.14-src configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge golang-1.14-src

References

Summary

In this tutorial we learn how to install golang-1.14-src package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.