usage_on_fly
This is an old revision of the document!
−Table of Contents
Perl
CPAN
To install Modules Locally
Best way to install local module is to install module “local::lib”.
CPAN Local::lib
But you can also manually do it.
First export your username
export username=ketan
create the .cpan directories
mkdir $HOME/.cpan/ mkdir $HOME/.cpan/CPAN/ # This is so it ignores the global CPAN config echo "\$CPAN::Config->{cpan_home}='/home/$username/.cpan';" > /home/$username/.cpan/CPAN/MyConfig.pm
Then Execute a CPAN shell
perl -MCPAN -e shell OR cpan
Then when in the shell type:
o conf init
<note>to reconfigure CPAN, replace all */root/.cpan/* with /home/$username/.cpan/*</note>
change the makepl_arg so it should look like.
- | /home/$username/.cpan/CPAN/MyConfig.pm
'makepl_arg' => q[INSTALLDIRS=site PREFIX=/home/$username/perl/],
Finally the env variable PERL5LIB needs to point to the new module installation paths:
export PERL5LIB="/home/$username/perl/share/perl/custom_lib/:/home/$username/perl/lib/perl/custom_lib/";
and then you should be able to use CPAN to install modules.
I then modified following file
- | ~/.bashrc
export PERL_LOCAL_LIB_ROOT="/home/$username/perl"; export PERL_MB_OPT="--install_base /home/$username/perl"; export PERL_MM_OPT="INSTALL_BASE=/home/$username/perl"; export PERL5LIB="/home/$username/perl/share/perl/custom_lib/:/home/$username/perl/lib/perl/custom_lib/"; export PATH="/home/$username/perl/bin:$PATH";
usage_on_fly.1330021532.txt.gz · Last modified: 2020/08/10 02:29 (external edit)