in reply to Re: How to deploy new Perl Modules to other machines?
in thread How to deploy new Perl Modules to other machines?

I am using Carton to port the modules. Its simple and easy on the root directory of application, Create a file named 'cpanfile' and write the required modules requires 'HTTP::Strip'; requires ... and run >carton install All the modules and dependencies are saved to root/local/lib/perl5 In the code, add this path to @INC
  • Comment on Re^2: How to deploy new Perl Modules to other machines?