How To Install libsde1 on Debian 12

Learn how to install libsde1 on Debian 12 with this tutorial. libsde1 is PAPI software defined events runtime (shared libraries)

Introduction

In this tutorial we learn how to install libsde1 on Debian 12.

What is libsde1

libsde1 is:

Performance Application Programming Interface (PAPI) provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events.

Software Defined Events (SDEs) allow arbitrary custom performance metrics to be defined by applications or performance tools that can be measured by PAPI via the sde component.

This package provides the shared library.

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

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

sudo apt-get update

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

sudo apt-get -y install libsde1

Install libsde1 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libsde1 using apt by running the following command:

sudo apt -y install libsde1

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

sudo aptitude -y install libsde1

How To Uninstall libsde1 on Debian 12

To uninstall only the libsde1 package we can use the following command:

sudo apt-get remove libsde1

Uninstall libsde1 And Its Dependencies

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

sudo apt-get -y autoremove libsde1

Remove libsde1 Configurations and Data

To remove libsde1 configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libsde1

Remove libsde1 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libsde1

Dependencies

libsde1 have the following dependencies:

References

Summary

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