How To Install golang-doc on Ubuntu 18.04

In this tutorial we learn how to install golang-doc on Ubuntu 18.04. golang-doc is Go programming language - documentation

Introduction

In this tutorial we learn how to install golang-doc on Ubuntu 18.04.

What is golang-doc

golang-doc 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 is a dependency package that depends on the default Go documentation. You can view the formatted documentation by installing the golang-golang-x-tools package, running “godoc –http=:6060”, and then visiting http://localhost:6060/doc/install.html.

There are three methods to install golang-doc on Ubuntu 18.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-doc 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-doc using apt-get by running the following command:

sudo apt-get -y install golang-doc

Install golang-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install golang-doc

Install golang-doc 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-doc using aptitude by running the following command:

sudo aptitude -y install golang-doc

How To Uninstall golang-doc on Ubuntu 18.04

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

sudo apt-get remove golang-doc

Uninstall golang-doc And Its Dependencies

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

sudo apt-get -y autoremove golang-doc

Remove golang-doc Configurations and Data

To remove golang-doc configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge golang-doc

Remove golang-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge golang-doc

References

Summary

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