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


in reply to Re: To install a module...
in thread To install a module...

You want to run 'make install' as well.

Read the man pages for MakeMaker (man ExtUtils::MakeMaker) for other options. Also, depending on your OS flavor, there may be some standards for where you should install modules to.

For example, on debian systems you'll want to use:

perl Makefile.PL 'INSTALLDIRS=vendor'
On RedHat systems, I use:
perl Makefile.PL 'INSTALLDIRS=site'

Cheers,
-Dan