How To Install libignition-fuel-tools1-dev on Ubuntu 18.04

In this tutorial we learn how to install libignition-fuel-tools1-dev on Ubuntu 18.04. libignition-fuel-tools1-dev is Ignition fuel-tools classes and functions - Development files

Introduction

In this tutorial we learn how to install libignition-fuel-tools1-dev on Ubuntu 18.04.

What is libignition-fuel-tools1-dev

libignition-fuel-tools1-dev is:

Ignition Fuel Tools is composed by a client library and command line tools for interacting with Ignition Fuel servers. These servers host and manage different 3D robotics models.

The package ships the ignition fuel development headers and libraries

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

sudo apt-get -y install libignition-fuel-tools1-dev

Install libignition-fuel-tools1-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libignition-fuel-tools1-dev

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

sudo aptitude -y install libignition-fuel-tools1-dev

How To Uninstall libignition-fuel-tools1-dev on Ubuntu 18.04

To uninstall only the libignition-fuel-tools1-dev package we can use the following command:

sudo apt-get remove libignition-fuel-tools1-dev

Uninstall libignition-fuel-tools1-dev And Its Dependencies

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

sudo apt-get -y autoremove libignition-fuel-tools1-dev

Remove libignition-fuel-tools1-dev Configurations and Data

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

sudo apt-get -y purge libignition-fuel-tools1-dev

Remove libignition-fuel-tools1-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libignition-fuel-tools1-dev

References

Summary

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