How To Install python3-goocalendar on Debian 10
Introduction
In this tutorial we learn how to install python3-goocalendar
on Debian 10.
What is python3-goocalendar
python3-goocalendar is:
The GooCalendar module supplies a calendar widget drawn with GooCanvas that can display a month view and a week view. It also supplies classes to manage events you can add to the calendar.
This package is targeting Python version 3.
There are three methods to install python3-goocalendar
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 python3-goocalendar 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-goocalendar
using apt-get
by running the following command:
sudo apt-get -y install python3-goocalendar
Install python3-goocalendar Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-goocalendar
using apt
by running the following command:
sudo apt -y install python3-goocalendar
Install python3-goocalendar 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 python3-goocalendar
using aptitude
by running the following command:
sudo aptitude -y install python3-goocalendar
How To Uninstall python3-goocalendar on Debian 10
To uninstall only the python3-goocalendar
package we can use the following command:
sudo apt-get remove python3-goocalendar
Uninstall python3-goocalendar And Its Dependencies
To uninstall python3-goocalendar
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove python3-goocalendar
Remove python3-goocalendar Configurations and Data
To remove python3-goocalendar
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge python3-goocalendar
Remove python3-goocalendar configuration, data, and all of its dependencies
We can use the following command to remove python3-goocalendar
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-goocalendar
Dependencies
python3-goocalendar have the following dependencies:
- gir1.2-goocanvas-2.0
- gir1.2-gtk-3.0
- libcanberra-gtk3-module
- python3-gi-cairo
- python3-pkg-resources
- python3
References
Summary
In this tutorial we learn how to install python3-goocalendar
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.