How To Install perl-Parallel-Iterator.noarch on Amazon Linux 2
Introduction
In this tutorial we learn how to install perl-Parallel-Iterator.noarch
on Amazon Linux 2.
What is perl-Parallel-Iterator.noarch
The map function applies a user supplied transformation function to each element in a list, returning a new list containing the transformed elements. This module provides a ‘parallel map’. Multiple worker processes are forked so that many instances of the transformation function may be executed simultaneously. For time consuming operations, particularly operations that spend most of their time waiting for I/O, this is a big performance win. It also provides a simple idiom to make effective use of multi CPU systems.
We can use yum
to install perl-Parallel-Iterator.noarch
on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Parallel-Iterator.noarch.
Install perl-Parallel-Iterator.noarch on Amazon Linux 2 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-Parallel-Iterator.noarch
using yum
by running the following command:
sudo yum -y install perl-Parallel-Iterator.noarch
How To Uninstall perl-Parallel-Iterator.noarch on Amazon Linux 2
To uninstall only the perl-Parallel-Iterator.noarch
package we can use the following command:
sudo yum remove perl-Parallel-Iterator.noarch
perl-Parallel-Iterator.noarch Package Contents on Amazon Linux 2
/usr/share/doc/perl-Parallel-Iterator-1.00
/usr/share/doc/perl-Parallel-Iterator-1.00/Changes
/usr/share/doc/perl-Parallel-Iterator-1.00/README
/usr/share/man/man3/Parallel::Iterator.3pm.gz
/usr/share/perl5/vendor_perl/Parallel
/usr/share/perl5/vendor_perl/Parallel/Iterator.pm
References
Summary
In this tutorial we learn how to install perl-Parallel-Iterator.noarch
on Amazon Linux 2 using yum.