rumijah has asked for the wisdom of the Perl Monks concerning the following question:

I'm using a fresh install of Fedora 20, using perl 5, version 18, subversion 2 (v5.18.2) built for i386-linux-thread-multi.

The main thing I need is ExtUtils::MakeMaker.

When I try to install:

[jack@localhost ExtUtils-MakeMaker-6.86]$ perl Makefile.PL .... Can't locate Test/Harness.pm in @INC (you may need to install the Test +::Harness module) [jack@localhost Test-Harness-3.30]$ perl Makefile.PL Can't locate ExtUtils/MakeMaker.pm in @INC (you may need to install th +e ExtUtils::MakeMaker module) [jack@localhost CPAN-2.00]$ perl Makefile.PL Can't locate ExtUtils/MakeMaker.pm in @INC (you may need to install th +e ExtUtils::MakeMaker module)

**********************************************

Can anyone please help me out of this one?

Replies are listed 'Best First'.
Re: module install - catch22
by hippo (Archbishop) on Jan 21, 2014 at 22:10 UTC

    Both modules are available from the Fedora repo, so you can simply install them using yum.

    yum install perl-ExtUtils-MakeMaker perl-Test-Harness
      thanks, Hippo!