zenlisp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zenlisp: command not found
or when using sudo you get the following error message
sudo: zenlisp: command not found
Solutions to zenlisp: command not found
How To Fix zenlisp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zenlisp is provided by zenlisp package.
zenlisp is:
Zenlisp is an interpreter for a purely symbolic, side effect-free, lexically scoped dialect of LISP. It may be considered an implementation of pure LISP plus global definitions. Zenlisp is derived from ArrowLISP.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zenlisp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zenlisp.
sudo apt -y install zenlisp
Or if you have aptitude installed you can use the following command.
sudo aptitude install zenlisp
Summary
In this tutorial we learn how to fix zenlisp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.