JSONStream command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
JSONStream: command not found
or when using sudo you get the following error message
sudo: JSONStream: command not found
Solutions to JSONStream: command not found
How To Fix JSONStream: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu JSONStream is provided by node-jsonstream package.
node-jsonstream is:
JSONStream.parse(pattern, map) provide a function that can be used to map or filter the json output. map is passed the value at that node of the pattern, if map return non-nullish (anything but null or undefined) that value will be emitted in the stream. If it returns a nullish value, nothing will be emitted.
JSONStream also emits ‘header’ and ‘footer’ events, the ‘header’ event contains anything in the output that was before the first match, and the ‘footer’, is anything after the last match.
To fix this problem, we can install more using the command below.
sudo apt-get -y install node-jsonstream
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install node-jsonstream.
sudo apt -y install node-jsonstream
Or if you have aptitude installed you can use the following command.
sudo aptitude install node-jsonstream
Summary
In this tutorial we learn how to fix JSONStream command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.