dh_lisp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dh_lisp: command not found
or when using sudo you get the following error message
sudo: dh_lisp: command not found
Solutions to dh_lisp: command not found
How To Fix dh_lisp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dh_lisp is provided by dh-lisp package.
dh-lisp is:
This debhelper addon targets Debian package maintainers of packages related to Common Lisp. It automates the processes of making a package conform to the Common Lisp in Debian Manual:
It adds dependencies to required Common Lisp implementations if precompiled object files for them are included in the package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dh-lisp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dh-lisp.
sudo apt -y install dh-lisp
Or if you have aptitude installed you can use the following command.
sudo aptitude install dh-lisp
Summary
In this tutorial we learn how to fix dh_lisp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.