jp command not found
In this troubleshooting guide we learn how to fix jp command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
jp: command not found
or when using sudo you get the following error message
sudo: jp: command not found
Solutions to jp: command not found
How To Fix jp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jp is provided by jp package.
jp is:
The jp command is a command-line interface to JMESPath, an expression language for manipulating JSON (as XPath is to XML).
To fix this problem, we can install more using the command below.
sudo apt-get -y install jp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jp.
sudo apt -y install jp
Or if you have aptitude installed you can use the following command.
sudo aptitude install jp
Summary
In this tutorial we learn how to fix jp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.