cccc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cccc: command not found
or when using sudo you get the following error message
sudo: cccc: command not found
Solutions to cccc: command not found
How To Fix cccc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cccc is provided by cccc package.
cccc is:
CCCC analyses and reports measurements of source code in C, C++, and Java. The metrics supported include lines of code, McCabe’s Cyclomatic Complexity, and measures of module fan-out/fan-in.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cccc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cccc.
sudo apt -y install cccc
Or if you have aptitude installed you can use the following command.
sudo aptitude install cccc
Summary
In this tutorial we learn how to fix cccc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.