in reply to How should I manage CPAN when using two versions of Perl in my computer?

In general, with Linux distributions, you should avoid using the cpan utility to install modules to the system perl, and instead rely on the OS packaging system's pre-packaged cpan distributions. For example on my Fedora system I would install the 'perl-Mozilla-CA' rpm using dnf, rather than doing '/usr/bin/cpan Mozilla::CA'. I can't comment specifically on how openSUSE handles things.

Dave.

  • Comment on Re: How should I manage CPAN when using two versions of Perl in my computer?

Replies are listed 'Best First'.
Re^2: How should I manage CPAN when using two versions of Perl in my computer?
by hda (Chaplain) on Jun 17, 2018 at 18:46 UTC
    Thanks for your answer, Dave. Indeed, that seems like a very sound strategy.