in reply to Can I use the Following Modules in the Linux version of Perl.

They all have passing builds, for example XML::XPath.

  • Comment on Re: Can I use the Following Modules in the Linux version of Perl.

Replies are listed 'Best First'.
Re^2: Can I use the Following Modules in the Linux version of Perl.
by Anonymous Monk on May 03, 2022 at 09:45 UTC

    I haven't understood your comment. So can you please tell me that can i use or not in the Linux

      You have to install the modules, but you can use them on Linux.

      If you don't know how to install the modules or if you are using the Perl that comes with your system, most likely your system administrator can install the modules from the system package manager. This is the recommended way of installing modules in that situation.

      If you manage the Perl installation yourself (using App::perlbrew for example), then you simply install the modules using

      cpan XML::CanonicalizeXML XML::XPath XML::XPath::XMLParser Crypt::Open +SSL::RSA

      Most likely you still need your system administrator to install the appropriate external libraries like libxml-dev etc.

      They all have passing builds and can be installed without issue, so you can use them.