How To Install apache-commons-cli on AlmaLinux 8
Introduction
In this tutorial we learn how to install apache-commons-cli
on AlmaLinux 8.
What is apache-commons-cli
The CLI library provides a simple and easy to use API for working with the command line arguments and options.
We can use yum
or dnf
to install apache-commons-cli
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install apache-commons-cli.
Install apache-commons-cli on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install apache-commons-cli
using dnf
by running the following command:
sudo dnf -y install apache-commons-cli
Install apache-commons-cli on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install apache-commons-cli
using yum
by running the following command:
sudo yum -y install apache-commons-cli
How To Uninstall apache-commons-cli on AlmaLinux 8
To uninstall only the apache-commons-cli
package we can use the following command:
sudo dnf remove apache-commons-cli
References
Summary
In this tutorial we learn how to install apache-commons-cli
on AlmaLinux 8 using yum and dnf.