sisc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sisc: command not found
or when using sudo you get the following error message
sudo: sisc: command not found
Solutions to sisc: command not found
How To Fix sisc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sisc is provided by sisc package.
sisc is:
SISC is an extensible Java based interpreter of the algorithmic language Scheme. SISC uses modern interpretation techniques, and handily outperforms all existing JVM interpreters (often by more than an order of magnitude).
In addition, SISC is a complete implementation of the language. The entire R5RS Scheme standard is supported, no exceptions. This includes a full number tower including complex number support, arbitrary precision integers and floating point numbers, as well as hygenic R5RS macros, proper tail recursion, and first-class continuations (not just the escaping continuations as in many limited Scheme systems). SISC also attempts to implement the standard as correctly as possible, while still providing exceptional performance.
SISC also provides useful real-world extensions, such as networking, elegant exception handling, a scope-friendly module system, support for SLIB, numerous SRFIs, and a Java foreign-function interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sisc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sisc.
sudo apt -y install sisc
Or if you have aptitude installed you can use the following command.
sudo aptitude install sisc
Summary
In this tutorial we learn how to fix sisc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.