How To Install libdate-pregnancy-perl on Debian 9
Introduction
In this tutorial we learn how to install libdate-pregnancy-perl on Debian 9.
What is libdate-pregnancy-perl
libdate-pregnancy-perl is:
Date::Pregnancy can be used to calculate the due date for a pregnancy. This module implements 3 different methods for calculating the date of birth based on data such as first day of last period (LMP) and average period cycle length (APCL).
The 3 birthdate algorithms available in the module are 266 Days (default), 40 Weeks, and Count Back.
There are three methods to install libdate-pregnancy-perl 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 libdate-pregnancy-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libdate-pregnancy-perl using apt-get by running the following command:
sudo apt-get -y install libdate-pregnancy-perl
Install libdate-pregnancy-perl Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libdate-pregnancy-perl using apt by running the following command:
sudo apt -y install libdate-pregnancy-perl
Install libdate-pregnancy-perl 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 libdate-pregnancy-perl using aptitude by running the following command:
sudo aptitude -y install libdate-pregnancy-perl
How To Uninstall libdate-pregnancy-perl on Debian 9
To uninstall only the libdate-pregnancy-perl package we can use the following command:
sudo apt-get remove libdate-pregnancy-perl
Uninstall libdate-pregnancy-perl And Its Dependencies
To uninstall libdate-pregnancy-perl and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libdate-pregnancy-perl
Remove libdate-pregnancy-perl Configurations and Data
To remove libdate-pregnancy-perl configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libdate-pregnancy-perl
Remove libdate-pregnancy-perl configuration, data, and all of its dependencies
We can use the following command to remove libdate-pregnancy-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libdate-pregnancy-perl
Dependencies
libdate-pregnancy-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libdate-pregnancy-perl package on Debian 9 using different package management tools: apt, apt-get and aptitude.