How To Install libgphobos-dev on Debian 11

In this tutorial we learn how to install libgphobos-dev on Debian 11. libgphobos-dev is Phobos D standard library

Introduction

In this tutorial we learn how to install libgphobos-dev on Debian 11.

What is libgphobos-dev

libgphobos-dev is:

This is a dependency package providing the default D standard library.

There are three methods to install libgphobos-dev on Debian 11. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libgphobos-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 libgphobos-dev using apt-get by running the following command:

sudo apt-get -y install libgphobos-dev

Install libgphobos-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libgphobos-dev

Install libgphobos-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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libgphobos-dev

How To Uninstall libgphobos-dev on Debian 11

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

sudo apt-get remove libgphobos-dev

Uninstall libgphobos-dev And Its Dependencies

To uninstall libgphobos-dev and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove libgphobos-dev

Remove libgphobos-dev Configurations and Data

To remove libgphobos-dev configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge libgphobos-dev

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

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

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

Dependencies

libgphobos-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libgphobos-dev package on Debian 11 using different package management tools: apt, apt-get and aptitude.