How To Install libdevel-callchecker-perl on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 421 words
Introduction
In this tutorial we learn how to install libdevel-callchecker-perl
on Ubuntu.
What is libdevel-callchecker-perl
libdevel-callchecker-perl is:
Devel::CallChecker makes some new features of the Perl 5.14.0 C API available to XS modules running on older versions of Perl. The features are centred around the function cv_set_call_checker, which allows XS code to attach a magical annotation to a Perl subroutine, resulting in resolvable calls to that subroutine being mutated at compile time by arbitrary C code. This module makes cv_set_call_checker and several supporting functions available. (It is possible to achieve the effect of cv_set_call_checker from XS code on much earlier Perl versions, but it is painful to achieve without the centralised facility.)
There are three methods to install libdevel-callchecker-perl
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libdevel-callchecker-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 libdevel-callchecker-perl
using apt-get
by running the following command:
sudo apt-get -y install libdevel-callchecker-perl
Install libdevel-callchecker-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libdevel-callchecker-perl
using apt
by running the following command:
sudo apt -y install libdevel-callchecker-perl
Install libdevel-callchecker-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 Ubuntu. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libdevel-callchecker-perl
using aptitude
by running the following command:
sudo aptitude -y install libdevel-callchecker-perl
How To Uninstall libdevel-callchecker-perl on Ubuntu
To uninstall only the libdevel-callchecker-perl
package we can use the following command:
sudo apt-get remove libdevel-callchecker-perl
Uninstall libdevel-callchecker-perl And Its Dependencies
To uninstall libdevel-callchecker-perl
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove libdevel-callchecker-perl
Remove libdevel-callchecker-perl Configurations and Data
To remove libdevel-callchecker-perl
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge libdevel-callchecker-perl
Remove libdevel-callchecker-perl configuration, data, and all of its dependencies
We can use the following command to remove libdevel-callchecker-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libdevel-callchecker-perl
Dependencies
libdevel-callchecker-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libdevel-callchecker-perl
package on Ubuntu using different package management tools: apt, apt-get and aptitude.