jo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jo: command not found
or when using sudo you get the following error message
sudo: jo: command not found
Solutions to jo: command not found
How To Fix jo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jo is provided by jo package.
jo is:
jo creates a JSON string on stdout from words given it as arguments or read from stdin. It can generate both arrays and objects. Here is a short example:
$ jo -p name=jo n=17 parser@0 { “name”: “jo”, “n”: 17, “parser”: false }
To fix this problem, we can install more using the command below.
sudo apt-get -y install jo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jo.
sudo apt -y install jo
Or if you have aptitude installed you can use the following command.
sudo aptitude install jo
Summary
In this tutorial we learn how to fix jo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.