How To Install gnome-web-photo on Debian 9

In this tutorial we learn how to install gnome-web-photo on Debian 9. gnome-web-photo is Create snapshot images and print web pages from the command line

Introduction

In this tutorial we learn how to install gnome-web-photo on Debian 9.

What is gnome-web-photo

gnome-web-photo is:

GNOME Web Photographer is a tool to generate full-size image files and thumbnails from HTML files and web pages. It can also be used to print those.

There are three methods to install gnome-web-photo on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install gnome-web-photo Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install gnome-web-photo

Install gnome-web-photo Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gnome-web-photo using apt by running the following command:

sudo apt -y install gnome-web-photo

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

sudo aptitude -y install gnome-web-photo

How To Uninstall gnome-web-photo on Debian 9

To uninstall only the gnome-web-photo package we can use the following command:

sudo apt-get remove gnome-web-photo

Uninstall gnome-web-photo And Its Dependencies

To uninstall gnome-web-photo and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove gnome-web-photo

Remove gnome-web-photo Configurations and Data

To remove gnome-web-photo configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge gnome-web-photo

Remove gnome-web-photo configuration, data, and all of its dependencies

We can use the following command to remove gnome-web-photo configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gnome-web-photo

Dependencies

gnome-web-photo have the following dependencies:

References

Summary

In this tutorial we learn how to install gnome-web-photo package on Debian 9 using different package management tools: apt, apt-get and aptitude.