in reply to Problem in installation of a Perl Module
You will be prompted to specify or confirm the location you want to install your module.$ perl -MCPAN -e 'shell'
It'll do everything for you.CPAN> install Module::Name
#!/usr/bin/perl -w use lib "/home/yourname/perl"; use Module::Name;
|
|---|