How To Install perl-Future on AlmaLinux 8

In this tutorial we learn how to install perl-Future in AlmaLinux 8. perl-Future is Perl object system to represent an operation awaiting completion

Introduction

In this tutorial we learn how to install perl-Future on AlmaLinux 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 AlmaLinux 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 AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-Future using dnf by running the following command:

sudo dnf -y install perl-Future

Install perl-Future 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 perl-Future using yum by running the following command:

sudo yum -y install perl-Future

How To Uninstall perl-Future on AlmaLinux 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 AlmaLinux 8 using yum and dnf.