How do I tell CPAN.pm to install all modules in a specific directory? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:19:53Z http://stackoverflow.com/feeds/question/786544 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/786544/how-do-i-tell-cpan-pm-to-install-all-modules-in-a-specific-directory 0 How do I tell CPAN.pm to install all modules in a specific directory? Chas. Owens 2009-04-24T16:11:44Z 2009-04-25T17:58:03Z <p>I have set </p> <pre><code>makepl_arg [INSTALLDIRS=site PREFIX=~/perl] mbuildpl_arg [--install_base ~/perl] </code></pre> <p>in the CPAN.pm configuration. I had hoped that this would cause modules to get installed in the same place, but I still have to set multiple paths in PERL5LIB:</p> <pre><code>export PERL5LIB=~/perl/share/perl/5.10.0:~/perl/lib/perl5/:~/perl/lib/perl/5.10.0 </code></pre> <p>This has been the case for a long time and I have just lived with it, but I was wondering if anyone knew how to get CPAN.pm to put all modules in the same directory?</p> http://stackoverflow.com/questions/786544/how-do-i-tell-cpan-pm-to-install-all-modules-in-a-specific-directory/786618#786618 9 Answer by jrockway for How do I tell CPAN.pm to install all modules in a specific directory? jrockway 2009-04-24T16:29:33Z 2009-04-24T16:29:33Z <p>Install <a href="http://search.cpan.org/perldoc?local::lib" rel="nofollow">local::lib</a>. It will handle all the configuration for you.</p> http://stackoverflow.com/questions/786544/how-do-i-tell-cpan-pm-to-install-all-modules-in-a-specific-directory/787207#787207 0 Answer by brian d foy for How do I tell CPAN.pm to install all modules in a specific directory? brian d foy 2009-04-24T19:21:22Z 2009-04-24T19:21:22Z <p>Have you tried using INSTALL_BASE for both? You have to set multiple directories because you're telling CPAN.pm to install in multiple directories. Tell it to install everything in the same place:</p> <pre><code>makepl_arg [INSTALL_BASE=~/perl] mbuildpl_arg [--install_base ~/perl] </code></pre>