How to uninstall a perl module
Posted: Thu Oct 16, 2008 3:24 pm
Most people just install Perl modules and don't bother uninstalling them.
Here is a normal procedure of installing Perl modules:
Here is how to delete/remove/uninstall Perl modules:
Here is a normal procedure of installing Perl modules:
Code: Select all
% tar xvzf blah-1.2.3.tar.gz
% cd blah-1.2.3
% perl Makefile.PL
% make
% make test
% make install
Code: Select all
% cd blah-1.2.3
% make uninstall