How To Install perl-Future on CentOS 8
Introduction
In this tutorial we learn how to install perl-Future on CentOS 8.
What is perl-Future
A Future object represents an operation that is currently in progress, or has recently completed. It can be used in a variety of ways to manage the flow of control, and data, through an asynchronous program.
We can use yum or dnf to install perl-Future on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Future.
Install perl-Future on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install perl-Future using yum by running the following command:
sudo yum -y install perl-Future
Install perl-Future on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install perl-Future using dnf by running the following command:
sudo dnf -y install perl-Future
How To Uninstall perl-Future on CentOS 8
To uninstall only the perl-Future package we can use the following command:
sudo dnf remove perl-Future
References
Summary
In this tutorial we learn how to install perl-Future on CentOS 8 using yum and dnf.