How To Install libreoffice-evolution on Ubuntu 20.04

In this tutorial we learn how to install libreoffice-evolution on Ubuntu 20.04. libreoffice-evolution is office productivity suite – Evolution addressbook support office productivity suite – Evolution addressbook support

Introduction

In this tutorial we learn how to install libreoffice-evolution on Ubuntu 20.04.

What is libreoffice-evolution

libreoffice-evolution is:

LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office.

This package allows LibreOffice to access Evolution address books. You need to install evolution separately.

Package: libreoffice-evolution Architecture: amd64 Version: 1:6.4.2-0ubuntu3 Priority: optional Section: universe/gnome Source: libreoffice Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian LibreOffice Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 589 Depends: libreoffice-base, libreoffice-common, libreoffice-core (= 1:6.4.2-0ubuntu3), libebook-1.2-20, libc6 (>= 2.14), libgcc-s1 (>= 3.0), libglib2.0-0 (>= 2.38.0), libstdc++6 (>= 5), libuno-cppu3 (>= 4.4.0~alpha), libuno-cppuhelpergcc3-3 (>= 4.0.0~alpha), libuno-sal3 (>= 4.1.0~alpha), libuno-salhelpergcc3-3 (>= 1.4.0), uno-libs-private, ure Recommends: evolution Filename: pool/universe/libr/libreoffice/libreoffice-evolution_6.4.2-0ubuntu3_amd64.deb Size: 85320 MD5sum: 7029d583aa783df3dd335932c01a816c SHA1: ec3b314fa3a25c34f452027b5fe4423caab160c0 SHA256: d7da4123584923d29c2b3d14ea60c1264da203fd4d1cbd95eb8b584ecb423e48 Homepage: http://www.libreoffice.org Description-en: office productivity suite – Evolution addressbook support LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office.

This package allows LibreOffice to access Evolution address books. You need to install evolution separately.

There are three methods to install libreoffice-evolution on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libreoffice-evolution Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libreoffice-evolution

Install libreoffice-evolution Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libreoffice-evolution

Install libreoffice-evolution 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libreoffice-evolution

How To Uninstall libreoffice-evolution on Ubuntu 20.04

To uninstall only the libreoffice-evolution package we can use the following command:

sudo apt-get remove libreoffice-evolution

Uninstall libreoffice-evolution And Its Dependencies

To uninstall libreoffice-evolution and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libreoffice-evolution

Remove libreoffice-evolution Configurations and Data

To remove libreoffice-evolution configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libreoffice-evolution

Remove libreoffice-evolution configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libreoffice-evolution

References

Summary

In this tutorial we learn how to install libreoffice-evolution package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.