Tim's IT-Blog

Just a blog about IT and IT-Problems…

Uninstall Perl CPAN Module

by admin on 13/06/2014

Via pm-uninstall # Install pm-uninstall at the frist time / if not already exists perl -MCPAN -e “install App::pm-uninstall” #Uninstall Module example Net::SSLeay pm-uninstall -n Net::SSLeay Or use follwing script target=”_blank”>http://perltricks.com/article/3/2013/3/27/How-to-cleanly-uninstall-a-Perl-module: # uninstall_perl_module.pl from PerlTricks.com use 5.14.2; use ExtUtils::Installed; use ExtUtils::Packlist; # Exit unless a module name was passed die (“Error: no Module::Name passed as […]