How To Install libimage-seek-perl on Ubuntu 18.04

In this tutorial we learn how to install libimage-seek-perl on Ubuntu 18.04. libimage-seek-perl is Perl module to find similar pictures in a library

Introduction

In this tutorial we learn how to install libimage-seek-perl on Ubuntu 18.04.

What is libimage-seek-perl

libimage-seek-perl is:

ImgSeek (http://www.imgseek.net/) is an implementation of Haar wavelet decomposition techniques to find similar pictures in a library. Image::Seek is a port of the ImgSeek library to Perl’s XS. It can deal with image objects produced by the Imager and Image::Imlib2 libraries.

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

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

sudo apt-get update

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

sudo apt-get -y install libimage-seek-perl

Install libimage-seek-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libimage-seek-perl using apt by running the following command:

sudo apt -y install libimage-seek-perl

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

sudo aptitude -y install libimage-seek-perl

How To Uninstall libimage-seek-perl on Ubuntu 18.04

To uninstall only the libimage-seek-perl package we can use the following command:

sudo apt-get remove libimage-seek-perl

Uninstall libimage-seek-perl And Its Dependencies

To uninstall libimage-seek-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libimage-seek-perl

Remove libimage-seek-perl Configurations and Data

To remove libimage-seek-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libimage-seek-perl

Remove libimage-seek-perl configuration, data, and all of its dependencies

We can use the following command to remove libimage-seek-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libimage-seek-perl

References

Summary

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