clirr command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
clirr: command not found
or when using sudo you get the following error message
sudo: clirr: command not found
Solutions to clirr: command not found
How To Fix clirr: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu clirr is provided by clirr package.
clirr is:
Clirr is a tool that checks Java libraries for binary and source compatibility with older releases. The Clirr Ant task can break the build if it detects incompatible API changes, making it easy to prevent accidental introduction of compatibility issues.
To fix this problem, we can install more using the command below.
sudo apt-get -y install clirr
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install clirr.
sudo apt -y install clirr
Or if you have aptitude installed you can use the following command.
sudo aptitude install clirr
Summary
In this tutorial we learn how to fix clirr command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.