How to Install and Uninstall perl-parent.noarch Package on Amazon Linux 2

Last updated: May 19,2024

1. Install "perl-parent.noarch" package

Please follow the instructions below to install perl-parent.noarch on Amazon Linux 2

$ sudo yum makecache $ sudo yum install perl-parent.noarch

2. Uninstall "perl-parent.noarch" package

Here is a brief guide to show you how to uninstall perl-parent.noarch on Amazon Linux 2:

$ sudo yum remove perl-parent.noarch $ sudo yum autoremove

3. Information about the perl-parent.noarch package on Amazon Linux 2

Loaded plugins: ovl, priorities
Installed Packages
Name : perl-parent
Arch : noarch
Epoch : 1
Version : 0.225
Release : 244.amzn2.0.1
Size : 8.0 k
Repo : installed
From repo : amzn2-core
Summary : Establish an ISA relationship with base classes at compile time
URL : http://search.cpan.org/dist/parent/
License : GPL+ or Artistic
Description : Allows you to both load one or more modules, while setting up
: inheritance from those modules at the same time. Mostly similar in
: effect to:
:
: package Baz;
:
: BEGIN {
: require Foo;
: require Bar;
:
: push @ISA, qw(Foo Bar);
: }