in reply to How to deliver a perl application to a client?

See also How do you distribute your Perl application to your customers?

Alternatively, look at Bugzilla: It comes with a checksetup.pl script that simply checks if all required modules are installed, and complains about missing ones. It also provides an install-module.pl script that will try to install modules. The documentation explains what is needed and how to get it on the target system. Yes, this is a manual process, but it should work on any system.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
  • Comment on Re: How to deliver a perl application to a client?

Replies are listed 'Best First'.
Re^2: How to deliver a perl application to a client?
by xcodejoy (Novice) on Oct 22, 2019 at 14:07 UTC

    Thank you and everyone else who responded. You really helped me figure this out.