sick command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sick: command not found
or when using sudo you get the following error message
sudo: sick: command not found
Solutions to sick: command not found
How To Fix sick: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sick is provided by clc-intercal package.
clc-intercal is:
This package provides a Perl-based compiler for the INTERCAL programming language, usable either from the command line or as a Perl module.
CLC-INTERCAL is designed to be almost compatible with the original (Princeton 1972) compiler. It also implements several extensions to the original language, including support for object orientation, operator overloading and quantum computing.
To fix this problem, we can install more using the command below.
sudo apt-get -y install clc-intercal
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install clc-intercal.
sudo apt -y install clc-intercal
Or if you have aptitude installed you can use the following command.
sudo aptitude install clc-intercal
Summary
In this tutorial we learn how to fix sick command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.