How To Install libreoffice-librelogo on Debian 9
Introduction
In this tutorial we learn how to install libreoffice-librelogo on Debian 9.
What is libreoffice-librelogo
libreoffice-librelogo is:
LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office.
This package contains Librelogo, which is a pyuno-based Logo-like progamming language with interactive vectorgraphics for education and DTP
- basic Logo syntax for back compatibility with educational Logo systems
- interactive vectorgraphics in LibreOffice Writer
- native commands (easily translatable)
- Python data structures (list, tuple, set, dictionary) and other Python features
There are three methods to install libreoffice-librelogo 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 libreoffice-librelogo 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-librelogo using apt-get by running the following command:
sudo apt-get -y install libreoffice-librelogo
Install libreoffice-librelogo Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libreoffice-librelogo using apt by running the following command:
sudo apt -y install libreoffice-librelogo
Install libreoffice-librelogo 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 libreoffice-librelogo using aptitude by running the following command:
sudo aptitude -y install libreoffice-librelogo
How To Uninstall libreoffice-librelogo on Debian 9
To uninstall only the libreoffice-librelogo package we can use the following command:
sudo apt-get remove libreoffice-librelogo
Uninstall libreoffice-librelogo And Its Dependencies
To uninstall libreoffice-librelogo and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libreoffice-librelogo
Remove libreoffice-librelogo Configurations and Data
To remove libreoffice-librelogo configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libreoffice-librelogo
Remove libreoffice-librelogo configuration, data, and all of its dependencies
We can use the following command to remove libreoffice-librelogo configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libreoffice-librelogo
Dependencies
libreoffice-librelogo have the following dependencies:
References
Summary
In this tutorial we learn how to install libreoffice-librelogo package on Debian 9 using different package management tools: apt, apt-get and aptitude.