How To Install libgtk3-imageview-perl on Debian 11
Introduction
In this tutorial we learn how to install libgtk3-imageview-perl
on Debian 11.
What is libgtk3-imageview-perl
libgtk3-imageview-perl is:
The Gtk3::ImageView widget allows the user to zoom, pan and select the specified image and provides hooks to allow additional tools, e.g. painter, to be created and used.
Gtk3::ImageView is a Gtk3 port of Gtk2::ImageView.
There are three methods to install libgtk3-imageview-perl
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libgtk3-imageview-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 libgtk3-imageview-perl
using apt-get
by running the following command:
sudo apt-get -y install libgtk3-imageview-perl
Install libgtk3-imageview-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libgtk3-imageview-perl
using apt
by running the following command:
sudo apt -y install libgtk3-imageview-perl
Install libgtk3-imageview-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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libgtk3-imageview-perl
using aptitude
by running the following command:
sudo aptitude -y install libgtk3-imageview-perl
How To Uninstall libgtk3-imageview-perl on Debian 11
To uninstall only the libgtk3-imageview-perl
package we can use the following command:
sudo apt-get remove libgtk3-imageview-perl
Uninstall libgtk3-imageview-perl And Its Dependencies
To uninstall libgtk3-imageview-perl
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove libgtk3-imageview-perl
Remove libgtk3-imageview-perl Configurations and Data
To remove libgtk3-imageview-perl
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge libgtk3-imageview-perl
Remove libgtk3-imageview-perl configuration, data, and all of its dependencies
We can use the following command to remove libgtk3-imageview-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgtk3-imageview-perl
Dependencies
libgtk3-imageview-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libgtk3-imageview-perl
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.