How To Install gmt-doc on Ubuntu 18.04

In this tutorial we learn how to install gmt-doc on Ubuntu 18.04. gmt-doc is Documentation for GMT, the Generic Mapping Tools

Introduction

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

What is gmt-doc

gmt-doc is:

GMT is a collection of UNIX tools that allow users to manipulate (x,y) and (x,y,z) data sets (including filtering, trend fitting, gridding, projecting, etc.) and produce Encapsulated PostScript File (EPS) illustrations ranging from simple x-y plots through contour maps to artificially illuminated surfaces and 3-D perspective views in black and white, gray tone, hachure patterns, and 24-bit color.

GMT supports many common map projections plus linear, log, and power scaling, and comes with support data such as coastlines, rivers, and political boundaries.

This package contains the documentation for GMT.

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

sudo apt-get -y install gmt-doc

Install gmt-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install gmt-doc

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

sudo aptitude -y install gmt-doc

How To Uninstall gmt-doc on Ubuntu 18.04

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

sudo apt-get remove gmt-doc

Uninstall gmt-doc And Its Dependencies

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

sudo apt-get -y autoremove gmt-doc

Remove gmt-doc Configurations and Data

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

sudo apt-get -y purge gmt-doc

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

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

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

References

Summary

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