icmake command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
icmake: command not found
or when using sudo you get the following error message
sudo: icmake: command not found
Solutions to icmake: command not found
How To Fix icmake: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu icmake is provided by icmake package.
icmake is:
Icmake is a hybrid between a ‘make’ utility and a ‘shell script’ language. Originally, it was written to provide a useful tool for automatic program maintenance and system administrative tasks on MS-DOS platforms.
To fix this problem, we can install more using the command below.
sudo apt-get -y install icmake
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install icmake.
sudo apt -y install icmake
Or if you have aptitude installed you can use the following command.
sudo aptitude install icmake
Summary
In this tutorial we learn how to fix icmake command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.