euscomp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
euscomp: command not found
or when using sudo you get the following error message
sudo: euscomp: command not found
Solutions to euscomp: command not found
How To Fix euscomp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu euscomp is provided by euslisp package.
euslisp is:
euslisp provides executables, library and necessary lisp code for running EusLisp language. This provides basic Lisp interpreter, OOP functions, geometric class such as edge, plane, polygon, face, hole and body. Xlib/OpenGL interfaces.
This package contains the eus0/eus1/eus2/eusg/eusx/eusgl executable and accompanying files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install euslisp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install euslisp.
sudo apt -y install euslisp
Or if you have aptitude installed you can use the following command.
sudo aptitude install euslisp
Summary
In this tutorial we learn how to fix euscomp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.