Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: Configuring Mac OS X to Install Perl Modules

by Anonymous Monk
on Feb 08, 2010 at 07:11 UTC ( [id://821955]=note: print w/replies, xml ) Need Help??


in reply to Re: Configuring Mac OS X to Install Perl Modules
in thread Configuring Mac OS X to Install Perl Modules

These posts pointed me in the write direction. Hopefully, this clarification can help someone else fix this same problem.

To install DateTime on Mac

  1. read the original post from Perrmoss and the reply by Corion for background info
  2. sudo CPAN
  3. go through configuration (if needed) press enter for most options except:
  4. choose "follow" for the prerequisite policy (instead of ask)
  5. personally, I made the recommended/common choices to some of the options (like UNINST=1)
  6. Now here's the key:

  7. Try to install DateTime. Every time you see an error, install the package that's missing by:
    • Looking for text along the lines of
    • Can't locate Params/Validate.pm in @INC (@INC

      or

      Can't locate DateTime/Locale.pm in @INC (@INC

    • Take the "Params/Validate.pm" part and convert it to Params::Validate
    • and run the corresponding command in CPAN: install Params::Validate

For me to get the DateTime module to install I had to run the following, first:

install Params::Validate

install DateTime::Locale

install DateTime::TimeZone

Keep following that pattern and you'll get it installed, finally!!!

  • Comment on Re^2: Configuring Mac OS X to Install Perl Modules

Replies are listed 'Best First'.
Re^3: Configuring Mac OS X to Install Perl Modules
by Anonymous Monk on Feb 08, 2010 at 07:27 UTC

    In addition to everything I wrote above, I also needed to run install Test::Exception

    So the final, full list of everything I command I ran to install DateTime on my MacBook Pro OS X 10.5.8, that has never before used perl

    1. sudo CPAN (press enter lots of times to config)
    2. install Params::Validate
    3. install DateTime::Locale
    4. install DateTime::TimeZone
    5. install Test::Exception
    6. install Test::Warn
    7. install DateTime::Format::ICal
    8. and FINALLY:

    9. install DateTime

    Sadly, I have no idea what I just did. All I know is it worked for me and I moved on to successfully finish setting up bugzilla.

    I hope this helps someone else out there (the way the posts in this thread lead me to figure this thing out)

    - Kevin G. a.k.a. gMale

      I also needed to install Test::More. Otherwise I got some nonsense about "You tried to run a test without a plan".
      If I try to install DateTime, I get this: lizxp-4:~ lizx$ cpan DateTime CPAN: Storable loaded ok (v2.18) Going to read /Users/lizx/.cpan/Metadata Database was generated on Fri, 06 Jan 2012 20:10:31 GMT CPAN: YAML loaded ok (v0.78) Going to read /Users/lizx/.cpan/build/ ............................................................................DONE Found 35 old builds, restored the state of 35 Running install for module 'DateTime' Running Build for D/DR/DROLSKY/DateTime-0.72.tar.gz Prepending /Users/lizx/.cpan/build/JSON-PP-2.27200-mFYxJ8/blib/arch /Users/lizx/.cpan/build/JSON-PP-2.27200-mFYxJ8/blib/lib to PERL5LIB for 'get' Has already been unwrapped into directory /Users/lizx/.cpan/build/DateTime-0.72-LkeH0n Prepending /Users/lizx/.cpan/build/JSON-PP-2.27200-mFYxJ8/blib/arch /Users/lizx/.cpan/build/JSON-PP-2.27200-mFYxJ8/blib/lib to PERL5LIB for 'make' Could not make: Unknown error Prepending /Users/lizx/.cpan/build/JSON-PP-2.27200-mFYxJ8/blib/arch /Users/lizx/.cpan/build/JSON-PP-2.27200-mFYxJ8/blib/lib to PERL5LIB for 'test' Running Build test Can't test without successful make Running Build install Make had returned bad status, install seems impossible ---- I don't know what else to try.
      Had to do Install Module::Runtime before everything else.
      I just wanted to say thanks, and also to let others know that almost 3 years later, this worked perfectly for me on Snow Leopard.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://821955]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (8)
As of 2024-04-23 17:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found