http://www.perlmonks.org?node_id=583918


in reply to Re^2: help managing modules using CPAN.pm
in thread help managing modules using CPAN.pm

I have always used the method listed in the CPAN FAQ to remove unwanted modules.

It is also possible to remove individual module files using:

rm `perldoc -l Module::Name`

Using the look command in the CPAN shell will drop you into that particular module's build directory so that you can run the installation commands 'manually'

Using something like the following should upgrade modules removing conflicting module versions. Both CPAN and CPANPLUS can be configured to add the UNINST option when running make:

perl Makefile.PL make make test make install UNINST=1

Replies are listed 'Best First'.
Re^4: help managing modules using CPAN.pm
by j3 (Friar) on Nov 14, 2006 at 07:28 UTC
    That was a very pithy post bingos. Thank you for those details. :)