How To Install python3-etesync on Kali Linux

In this tutorial we learn how to install python3-etesync on Kali Linux. python3-etesync is python client library for EteSync

Introduction

In this tutorial we learn how to install python3-etesync on Kali Linux.

What is python3-etesync

python3-etesync is:

pyetesync provides a python API to interact with an EteSync server. It currently implements AddressBook and Calendar access, and supports two-way sync (both push and pull) to the server. It doesn’t currently implement pushing raw journal entries which are needed for people implementing new EteSync journal types which will be implemented soon.

There are three methods to install python3-etesync on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-etesync Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install python3-etesync

Install python3-etesync Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-etesync

Install python3-etesync Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-etesync using aptitude by running the following command:

sudo aptitude -y install python3-etesync

How To Uninstall python3-etesync on Kali Linux

To uninstall only the python3-etesync package we can use the following command:

sudo apt-get remove python3-etesync

Uninstall python3-etesync And Its Dependencies

To uninstall python3-etesync and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove python3-etesync

Remove python3-etesync Configurations and Data

To remove python3-etesync configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge python3-etesync

Remove python3-etesync configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-etesync

Dependencies

python3-etesync have the following dependencies:

References

Summary

In this tutorial we learn how to install python3-etesync package on Kali Linux using different package management tools: apt, apt-get and aptitude.