How To Install libkpeople-plugins on Debian 9

In this tutorial we learn how to install libkpeople-plugins on Debian 9. libkpeople-plugins is KPeople plugins for other compontents of KDE

Introduction

In this tutorial we learn how to install libkpeople-plugins on Debian 9.

What is libkpeople-plugins

libkpeople-plugins is:

libkpeople allow grouping multiple accounts into a single identity.

This library provides a plugin for akonadi.

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

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

sudo apt-get update

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

sudo apt-get -y install libkpeople-plugins

Install libkpeople-plugins Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libkpeople-plugins

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

sudo aptitude -y install libkpeople-plugins

How To Uninstall libkpeople-plugins on Debian 9

To uninstall only the libkpeople-plugins package we can use the following command:

sudo apt-get remove libkpeople-plugins

Uninstall libkpeople-plugins And Its Dependencies

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

sudo apt-get -y autoremove libkpeople-plugins

Remove libkpeople-plugins Configurations and Data

To remove libkpeople-plugins configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge libkpeople-plugins

Remove libkpeople-plugins configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libkpeople-plugins

Dependencies

libkpeople-plugins have the following dependencies:

References

Summary

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