jimsh command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jimsh: command not found
or when using sudo you get the following error message
sudo: jimsh: command not found
Solutions to jimsh: command not found
How To Fix jimsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jimsh is provided by jimsh package.
jimsh is:
Jim is an opensource small-footprint implementation of the Tcl programming language. It implements a large subset of Tcl and adds new features like references with garbage collection, closures, built-in Object Oriented Programming system, Functional Programming commands, first-class arrays and UTF-8 support. All this with a binary size of about 100-200kB (depending upon selected options).
This package provides the Jim interactive shell.
To fix this problem, we can install more using the command below.
sudo apt-get -y install jimsh
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jimsh.
sudo apt -y install jimsh
Or if you have aptitude installed you can use the following command.
sudo aptitude install jimsh
Summary
In this tutorial we learn how to fix jimsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.