How To Install mapivi on Debian 10

Learn how to install mapivi on Debian 10 with this tutorial. mapivi is Photo viewer and organizer with emphasis on IPTC fields

Introduction

In this tutorial we learn how to install mapivi on Debian 10.

What is mapivi

mapivi is:

Cross-platform (UNIX, Mac OS X, and Windows) picture manager and organizer, Mapivi is a stand alone tool, there is no need for a web server, online access or a database.

Deals with EXIF data (like timestamp, camera model, focal length, exposure time, aperture, etc.), and is able to rename the pictures according to their internal date/time, to display and modify JPEG comments and to do lossless rotation.

The idea of using Mapivi as an picture organizer is to keep user, EXIF, and IPTC information where it belongs – in the pictures – as well in a searchable Mapivi database.

Mapivi is also able to do image processing. Mapivi serves here as a frontend (GUI) for many proven command line tools, like the Image Magick tools.

Home page: http://mapivi.de.vu/ or http://herrmanns-stern.de/ or http://sourceforge.net/projects/mapivi

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

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

sudo apt-get update

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

sudo apt-get -y install mapivi

Install mapivi Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install mapivi using apt by running the following command:

sudo apt -y install mapivi

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

sudo aptitude -y install mapivi

How To Uninstall mapivi on Debian 10

To uninstall only the mapivi package we can use the following command:

sudo apt-get remove mapivi

Uninstall mapivi And Its Dependencies

To uninstall mapivi and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove mapivi

Remove mapivi Configurations and Data

To remove mapivi configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge mapivi

Remove mapivi configuration, data, and all of its dependencies

We can use the following command to remove mapivi configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge mapivi

Dependencies

mapivi have the following dependencies:

References

Summary

In this tutorial we learn how to install mapivi package on Debian 10 using different package management tools: apt, apt-get and aptitude.