rhino command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rhino: command not found
or when using sudo you get the following error message
sudo: rhino: command not found
Solutions to rhino: command not found
How To Fix rhino: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rhino is provided by rhino package.
rhino is:
Rhino is an implementation of the JavaScript language written entirely in Java. It is typically embedded into Java applications to provide scripting to end users.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rhino
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rhino.
sudo apt -y install rhino
Or if you have aptitude installed you can use the following command.
sudo aptitude install rhino
Summary
In this tutorial we learn how to fix rhino command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.