How To Install libdmr-dev on Debian 12

Learn how to install libdmr-dev on Debian 12 with this tutorial. libdmr-dev is Deepin movie player - widget library (development files)

Introduction

In this tutorial we learn how to install libdmr-dev on Debian 12.

What is libdmr-dev

libdmr-dev is:

Deepin Movie provides an intuitive easy to use operation interface and rich complete shortcuts. You can complete all play operations by keyboard, which will make you thoroughly get rid of the constraint of mouse click. Video files in various formats can be played through Deepin Movie, and you can use the streaming function to easily enjoy online video resources.

This package is part of DDE (Deepin Desktop Environment).

This package contains the header files for the widget library.

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

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

sudo apt-get -y install libdmr-dev

Install libdmr-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libdmr-dev

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

sudo aptitude -y install libdmr-dev

How To Uninstall libdmr-dev on Debian 12

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

sudo apt-get remove libdmr-dev

Uninstall libdmr-dev And Its Dependencies

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

sudo apt-get -y autoremove libdmr-dev

Remove libdmr-dev Configurations and Data

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

sudo apt-get -y purge libdmr-dev

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

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

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

Dependencies

libdmr-dev have the following dependencies:

References

Summary

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