Page 1 of 1

How to uninstall a perl module

Posted: Thu Oct 16, 2008 3:24 pm
by cah
Most people just install Perl modules and don't bother uninstalling them.

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
Here is how to delete/remove/uninstall Perl modules:

Code: Select all

% cd blah-1.2.3
% make uninstall