How To Install libhyantes-dev on Ubuntu 18.04

In this tutorial we learn how to install libhyantes-dev on Ubuntu 18.04. libhyantes-dev is development files for libhyantes

Introduction

In this tutorial we learn how to install libhyantes-dev on Ubuntu 18.04.

What is libhyantes-dev

libhyantes-dev is:

C headers and man pages for those who want to develop C/C++ programs using libhyantes hyantes aims to develop new methods for the cartographic representation of human distributions (population density, population increase, etc.) with various smoothing functions and opportunities for time-scale animations of maps. It provides a smoothing method related to multiscalar neighbourhood density estimation.

There are three methods to install libhyantes-dev 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 libhyantes-dev Using apt-get

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

sudo apt-get update

After updating apt database, We can install libhyantes-dev using apt-get by running the following command:

sudo apt-get -y install libhyantes-dev

Install libhyantes-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libhyantes-dev

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

sudo aptitude -y install libhyantes-dev

How To Uninstall libhyantes-dev on Ubuntu 18.04

To uninstall only the libhyantes-dev package we can use the following command:

sudo apt-get remove libhyantes-dev

Uninstall libhyantes-dev And Its Dependencies

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

sudo apt-get -y autoremove libhyantes-dev

Remove libhyantes-dev Configurations and Data

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

sudo apt-get -y purge libhyantes-dev

Remove libhyantes-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libhyantes-dev

References

Summary

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