How To Install libwerken.xpath-java on Debian 9
Introduction
In this tutorial we learn how to install libwerken.xpath-java on Debian 9.
What is libwerken.xpath-java
libwerken.xpath-java is:
A XPath Engine for JDOM, created by the Werken & Sons Company.
It’s not overly useful by itself, but rather needs an (currently in development) implementation of XPointer, XSLT, or other XPath-based specification. werken.xpath is merely an engine which can parse XPaths, and walk JDOM http://www.jdom.org/ trees.
There are three methods to install libwerken.xpath-java 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 libwerken.xpath-java Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libwerken.xpath-java using apt-get by running the following command:
sudo apt-get -y install libwerken.xpath-java
Install libwerken.xpath-java Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libwerken.xpath-java using apt by running the following command:
sudo apt -y install libwerken.xpath-java
Install libwerken.xpath-java 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 libwerken.xpath-java using aptitude by running the following command:
sudo aptitude -y install libwerken.xpath-java
How To Uninstall libwerken.xpath-java on Debian 9
To uninstall only the libwerken.xpath-java package we can use the following command:
sudo apt-get remove libwerken.xpath-java
Uninstall libwerken.xpath-java And Its Dependencies
To uninstall libwerken.xpath-java and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libwerken.xpath-java
Remove libwerken.xpath-java Configurations and Data
To remove libwerken.xpath-java configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libwerken.xpath-java
Remove libwerken.xpath-java configuration, data, and all of its dependencies
We can use the following command to remove libwerken.xpath-java configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libwerken.xpath-java
Dependencies
libwerken.xpath-java have the following dependencies:
References
Summary
In this tutorial we learn how to install libwerken.xpath-java package on Debian 9 using different package management tools: apt, apt-get and aptitude.