How To Install perl-Inline on CentOS 7

In this tutorial we learn how to install perl-Inline on CentOS 7. perl-Inline is Write Perl subroutines in other programming languages

Introduction

In this tutorial we learn how to install perl-Inline on CentOS 7.

What is perl-Inline

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.

We can use yum or dnf to install perl-Inline on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Inline.

Install perl-Inline on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install perl-Inline

Install perl-Inline on CentOS 7 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-Inline using dnf by running the following command:

sudo dnf -y install perl-Inline

How To Uninstall perl-Inline on CentOS 7

To uninstall only the perl-Inline package we can use the following command:

sudo dnf remove perl-Inline

References

Summary

In this tutorial we learn how to install perl-Inline on CentOS 7 using yum and dnf.