On Thu, 7 Aug 2008 00:43:35 -0700 (PDT) Yogi <> wrote:
Y> I am a Perl developer writing some programs to read mails using IMAP/
Y> POP3 modules (and some other modules as well). I have installed these
Y> modules in our development machine (after trying hard). Now we have
Y> to ship this product to our client. My question is, how to make
Y> depedent modules available in production envt? Merely copying of
Y> these modules to @INC location will work or sysadmin will have to use
Y> CPAN interface to install these modules?
It's best to use CPAN. If the modules are pure Perl you can just copy
them, but it will create administration issues.
Y> My worry is our client might not be willing to install something
Y> directly to production system (Linux in this case). Any help as how
Y> these kind of scenarios are dealt?
They are installing your programs, right? Just ask them to locate the
modules under a different directory and do `use lib ...' to use it.
You can also use PAR, see
http://search.cpan.org/dist/PAR/lib/...prerequisites?
Ted