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

Last updated: May 18,2024

1. Install "perl-Inline.noarch" package

Please follow the step by step instructions below to install perl-Inline.noarch on Amazon Linux 2

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

2. Uninstall "perl-Inline.noarch" package

This tutorial shows how to uninstall perl-Inline.noarch on Amazon Linux 2:

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

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

Loaded plugins: ovl, priorities
Available Packages
Name : perl-Inline
Arch : noarch
Version : 0.53
Release : 4.amzn2
Size : 168 k
Repo : amzn2-core/2/x86_64
Summary : Write Perl subroutines in other programming languages
URL : http://search.cpan.org/dist/Inline/
License : (GPL+ or Artistic) and Artistic
Description : The Inline module allows you to put source code from other
: programming languages directly "inline" in a Perl script or
: module. The code is automatically compiled as needed, and then
: loaded for immediate access from Perl.
:
: Inline saves you from the hassle of having to write and compile
: your own glue code using facilities like XS or SWIG. Simply type
: the code where you want it and run your Perl as normal. All the
: hairy details are handled for you. The compilation and
: installation of your code chunks all happen transparently; all you
: will notice is the delay of compilation on the first run.
:
: The Inline code only gets compiled the first time you run it (or
: whenever it is modified) so you only take the performance hit
: once. Code that is Inlined into distributed modules (like on the
: CPAN) will get compiled when the module is installed, so the end
: user will never notice the compilation time.