On Apr 17, 2008, at 11:41, Sharan Basappa wrote:

   PREREQ_PM => {
       'Test::More' => 0,
       'version'    => 0,
   },
snip
So, that means I have to install this module?

Regards
snip

That means that both Test::More and version must be installed. You check to see if a module is installed by saying

perl -MModule::Name -e 1

if you get an error then the module is not present in your system (or at least not visible). Note that you may need to set PERL5_LIB in order to find the modules you are installing:

export PERL5_PATH="/u/basappas/local/perl/perm_install/lib/perl5/ site_perl"


--
Chas. Owens
wonkden.net
The most important skill a programmer can have is the ability to read.

Reply via email to