ckati command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ckati: command not found
or when using sudo you get the following error message
sudo: ckati: command not found
Solutions to ckati: command not found
How To Fix ckati: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ckati is provided by ckati package.
ckati is:
The main goal of this tool is to speed up incremental build of Android. Currently, kati does not offer a faster build by itself. It instead converts your Makefile to a ninja file.
ckati is the C++ version of kati.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ckati
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ckati.
sudo apt -y install ckati
Or if you have aptitude installed you can use the following command.
sudo aptitude install ckati
Summary
In this tutorial we learn how to fix ckati command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.