How To Install python-jsonpath-rw-ext on Debian 10
Introduction
In this tutorial we learn how to install python-jsonpath-rw-ext
on Debian 10.
What is python-jsonpath-rw-ext
python-jsonpath-rw-ext is:
Jsonpath-rw-ext extends json-path-rw capabilities by adding multiple extensions: ’len’ that allows one to get the length of a list. ‘sorted’ that returns a sorted version of a list, ‘arithmetic’ that permits one to make math operation between elements and ‘filter’ to select only certain elements of a list.
This package contains the Python 2.x module.
There are three methods to install python-jsonpath-rw-ext
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 python-jsonpath-rw-ext Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install python-jsonpath-rw-ext
using apt-get
by running the following command:
sudo apt-get -y install python-jsonpath-rw-ext
Install python-jsonpath-rw-ext Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python-jsonpath-rw-ext
using apt
by running the following command:
sudo apt -y install python-jsonpath-rw-ext
Install python-jsonpath-rw-ext 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 python-jsonpath-rw-ext
using aptitude
by running the following command:
sudo aptitude -y install python-jsonpath-rw-ext
How To Uninstall python-jsonpath-rw-ext on Debian 10
To uninstall only the python-jsonpath-rw-ext
package we can use the following command:
sudo apt-get remove python-jsonpath-rw-ext
Uninstall python-jsonpath-rw-ext And Its Dependencies
To uninstall python-jsonpath-rw-ext
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove python-jsonpath-rw-ext
Remove python-jsonpath-rw-ext Configurations and Data
To remove python-jsonpath-rw-ext
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge python-jsonpath-rw-ext
Remove python-jsonpath-rw-ext configuration, data, and all of its dependencies
We can use the following command to remove python-jsonpath-rw-ext
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-jsonpath-rw-ext
Dependencies
python-jsonpath-rw-ext have the following dependencies:
References
Summary
In this tutorial we learn how to install python-jsonpath-rw-ext
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.