How To Install libwaili-dev on Debian 10
Introduction
In this tutorial we learn how to install libwaili-dev
on Debian 10.
What is libwaili-dev
libwaili-dev is:
from the web page: http://www.cs.kuleuven.ac.be/~wavelets/ “WAILI is a wavelet transform library. It includes some basic image processing operations based on the use of wavelets and forms the backbone of more complex image processing operations. "
This package contains what is needed for developers: static library, shared library, include files This package provides also documentation and testing sample programs
There are three methods to install libwaili-dev
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libwaili-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 libwaili-dev
using apt-get
by running the following command:
sudo apt-get -y install libwaili-dev
Install libwaili-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libwaili-dev
using apt
by running the following command:
sudo apt -y install libwaili-dev
Install libwaili-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 libwaili-dev
using aptitude
by running the following command:
sudo aptitude -y install libwaili-dev
How To Uninstall libwaili-dev on Debian 10
To uninstall only the libwaili-dev
package we can use the following command:
sudo apt-get remove libwaili-dev
Uninstall libwaili-dev And Its Dependencies
To uninstall libwaili-dev
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libwaili-dev
Remove libwaili-dev Configurations and Data
To remove libwaili-dev
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libwaili-dev
Remove libwaili-dev configuration, data, and all of its dependencies
We can use the following command to remove libwaili-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libwaili-dev
Dependencies
libwaili-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libwaili-dev
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.