How To Install libmapbox-wagyu-dev on Ubuntu 18.04

In this tutorial we learn how to install libmapbox-wagyu-dev on Ubuntu 18.04. libmapbox-wagyu-dev is Wagyu Geometry Processing Library

Introduction

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

What is libmapbox-wagyu-dev

libmapbox-wagyu-dev is:

Wagyu is a general library for the following basic geometric operations:

  • Union
  • Intersection
  • Difference
  • XOR

The output geometry from each of these operations is guaranteed to be valid and simple as per the OGC.

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

sudo apt-get -y install libmapbox-wagyu-dev

Install libmapbox-wagyu-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libmapbox-wagyu-dev

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

sudo aptitude -y install libmapbox-wagyu-dev

How To Uninstall libmapbox-wagyu-dev on Ubuntu 18.04

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

sudo apt-get remove libmapbox-wagyu-dev

Uninstall libmapbox-wagyu-dev And Its Dependencies

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

sudo apt-get -y autoremove libmapbox-wagyu-dev

Remove libmapbox-wagyu-dev Configurations and Data

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

sudo apt-get -y purge libmapbox-wagyu-dev

Remove libmapbox-wagyu-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libmapbox-wagyu-dev

References

Summary

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