scilab command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
scilab: command not found
or when using sudo you get the following error message
sudo: scilab: command not found
Solutions to scilab: command not found
How To Fix scilab: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu scilab is provided by scilab package.
scilab is:
Scilab is a matrix-based scientific software package. Scilab contains hundreds of built-in mathematical functions, rich data structures (including polynomials, rationals, linear systems, lists, etc…) and comes with a number of specific toolboxes for control, signal processing, …
This package also provides Xcos, a graphical editor to design hybrid dynamical systems models. Models can be designed, loaded, saved, compiled and simulated. Stable and efficient solution for industrial and academics needs, Xcos provides functionalities for modeling of mechanical systems (automotive, aeronautics…), hydraulic circuits (dam, pipe modeling…), control systems, etc. Modelica capabilities are also provided.
For a minimum version of scilab, install package “scilab-cli”.
To fix this problem, we can install more using the command below.
sudo apt-get -y install scilab
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install scilab.
sudo apt -y install scilab
Or if you have aptitude installed you can use the following command.
sudo aptitude install scilab
Summary
In this tutorial we learn how to fix scilab command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.