
Introduction
In this tutorial we learn how to install libatteanx-compatibility-trine-perl
on Ubuntu 20.04.
What is libatteanx-compatibility-trine-perl
libatteanx-compatibility-trine-perl is:
AtteanX::Compatibility::Trine provides a tiny shim
for code written for RDF::Trine to instead use Attean.
RDF::Trine and Attean are both Perl frameworks
for working with RDF data and SPARQL queries,
the former using Moose and deprecated
in favor of the latter using Moo.
SPARQL is an RDF query language,
that is, a semantic query language for databases,
able to retrieve and manipulate data
stored in Resource Description Framework format.
Resource Description Framework (RDF) is a standard model
for data interchange on the Web.
There are three methods to install libatteanx-compatibility-trine-perl
on Ubuntu 20.04. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libatteanx-compatibility-trine-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 libatteanx-compatibility-trine-perl
using apt-get
by running the following command:
sudo apt-get -y install libatteanx-compatibility-trine-perl
Install libatteanx-compatibility-trine-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libatteanx-compatibility-trine-perl
using apt
by running the following command:
sudo apt -y install libatteanx-compatibility-trine-perl
Install libatteanx-compatibility-trine-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 libatteanx-compatibility-trine-perl
using aptitude
by running the following command:
sudo aptitude -y install libatteanx-compatibility-trine-perl
How To Uninstall libatteanx-compatibility-trine-perl on Ubuntu 20.04
To uninstall only the libatteanx-compatibility-trine-perl
package we can use the following command:
sudo apt-get remove libatteanx-compatibility-trine-perl
Uninstall libatteanx-compatibility-trine-perl And Its Dependencies
To uninstall libatteanx-compatibility-trine-perl
and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove libatteanx-compatibility-trine-perl
Remove libatteanx-compatibility-trine-perl Configurations and Data
To remove libatteanx-compatibility-trine-perl
configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge libatteanx-compatibility-trine-perl
Remove libatteanx-compatibility-trine-perl configuration, data, and all of its dependencies
We can use the following command to remove libatteanx-compatibility-trine-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libatteanx-compatibility-trine-perl
References
- libatteanx-compatibility-trine-perl website
- libatteanx-compatibility-trine-perl on packages.ubuntu.com
Summary
In this tutorial we learn how to install libatteanx-compatibility-trine-perl
package on Ubuntu 20.04 using different package management tools: apt
, apt-get
and aptitude
.
