How To Install libwaili-dev on Ubuntu 18.04

In this tutorial we learn how to install libwaili-dev on Ubuntu 18.04. libwaili-dev is WAILI is a wavelet transform library (develop. files)

Introduction

In this tutorial we learn how to install libwaili-dev on Ubuntu 18.04.

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 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 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 Ubuntu. 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 Ubuntu 18.04

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 Ubuntu 18.04, 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 Ubuntu 18.04 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

References

Summary

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