How To Install librdf-trinex-functions-perl on Debian 10
Introduction
In this tutorial we learn how to install librdf-trinex-functions-perl
on Debian 10.
What is librdf-trinex-functions-perl
librdf-trinex-functions-perl is:
Resource Description Framework (RDF) is a standard model for data interchange on the Web.
RDF::Trine provides an RDF framework with an emphasis on extensibility, API stability, and the presence of a test suite.
RDF::TrineX::Functions provides some shortcut functions for RDF::Trine. It is a replacement for the venerable RDF::TrineShortcuts. Not a drop-in replacement. It has fewer features, fewer dependencies, less hackishness, less magic and fewer places it can go wrong.
There are three methods to install librdf-trinex-functions-perl
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 librdf-trinex-functions-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 librdf-trinex-functions-perl
using apt-get
by running the following command:
sudo apt-get -y install librdf-trinex-functions-perl
Install librdf-trinex-functions-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install librdf-trinex-functions-perl
using apt
by running the following command:
sudo apt -y install librdf-trinex-functions-perl
Install librdf-trinex-functions-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 librdf-trinex-functions-perl
using aptitude
by running the following command:
sudo aptitude -y install librdf-trinex-functions-perl
How To Uninstall librdf-trinex-functions-perl on Debian 10
To uninstall only the librdf-trinex-functions-perl
package we can use the following command:
sudo apt-get remove librdf-trinex-functions-perl
Uninstall librdf-trinex-functions-perl And Its Dependencies
To uninstall librdf-trinex-functions-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove librdf-trinex-functions-perl
Remove librdf-trinex-functions-perl Configurations and Data
To remove librdf-trinex-functions-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge librdf-trinex-functions-perl
Remove librdf-trinex-functions-perl configuration, data, and all of its dependencies
We can use the following command to remove librdf-trinex-functions-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge librdf-trinex-functions-perl
Dependencies
librdf-trinex-functions-perl have the following dependencies:
- libscalar-does-perl
- libperlx-maybe-perl
- librdf-ns-perl
- librdf-trine-perl
- libsub-exporter-perl
- liburi-perl
- perl
References
Summary
In this tutorial we learn how to install librdf-trinex-functions-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.