Tariq Rahmani <rahmani.ta...@gmail.com> 於 2013/3/3 上午10:44 寫道: > $ perl Makefile.PL > > Checking if your kit is complete... > > Looks good > > Warning: prerequisite ExtUtils::MakeMaker 6.59 not found. We have 6.5705. > Warning: prerequisite Getopt::ArgvFile 1.07 not found. > Warning: prerequisite Module::ScanDeps 1.09 not found. We have 1.08. > Warning: prerequisite PAR 1.005 not found. > Prototype mismatch: sub main::prompt: none vs ($;$) at > /usr/lib/perl5/5.14/ExtUtils/MakeMaker.pm line 218
Tariq, that is entirely normal. It simply means you need to install a few other dependency modules from CPAN before you can install PAR::Packer. You can install each of them manually, or use the "cpan" helper command: cpan -f PAR::Packer Or download the CPAN Minus script: https://raw.github.com/miyagawa/cpanminus/master/cpanm and run it with: perl cpanm -n PAR::Packer Cheers, Audrey