icecc-test-env command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
icecc-test-env: command not found
or when using sudo you get the following error message
sudo: icecc-test-env: command not found
Solutions to icecc-test-env: command not found
How To Fix icecc-test-env: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu icecc-test-env is provided by icecc package.
icecc is:
icecc (also known as Icecream) is a distributed compile system. It allows parallel compiling by distributing the compile jobs to several nodes of a compile network running the icecc daemon. The icecc scheduler routes the jobs and provides status and statistics information to the icecc monitor.
Each compile node can accept one or more compile jobs depending on the number of processors and the settings of the daemon. Link jobs and other jobs which cannot be distributed are executed locally on the node where the compilation is started.
To fix this problem, we can install more using the command below.
sudo apt-get -y install icecc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install icecc.
sudo apt -y install icecc
Or if you have aptitude installed you can use the following command.
sudo aptitude install icecc
Summary
In this tutorial we learn how to fix icecc-test-env command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.