jello command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jello: command not found
or when using sudo you get the following error message
sudo: jello: command not found
Solutions to jello: command not found
How To Fix jello: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jello is provided by jello package.
jello is:
jello is similar to jq in that it processes JSON and JSON Lines data except jello uses standard Python dict and list syntax.
JSON or JSON Lines can be piped into jello (JSON Lines are automatically slurped into a list of dictionaries) and are available as the variable _. Processed data can be output as JSON, JSON Lines, bash array lines, or a grep-able schema.
To fix this problem, we can install more using the command below.
sudo apt-get -y install jello
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jello.
sudo apt -y install jello
Or if you have aptitude installed you can use the following command.
sudo aptitude install jello
Summary
In this tutorial we learn how to fix jello command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.