critcl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
critcl: command not found
or when using sudo you get the following error message
sudo: critcl: command not found
Solutions to critcl: command not found
How To Fix critcl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu critcl is provided by critcl package.
critcl is:
Critcl takes a snippet of C, generates Tcl interface, sends it to the compiler, and then dynamically links the code. Checksums are used to only recompile when needed, so the build overhead really applies only once.
To fix this problem, we can install more using the command below.
sudo apt-get -y install critcl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install critcl.
sudo apt -y install critcl
Or if you have aptitude installed you can use the following command.
sudo aptitude install critcl
Summary
In this tutorial we learn how to fix critcl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.