Find the answer to your Linux question:
Results 1 to 2 of 2
Hi, can anyone provide me information about installing perl modules using CPAN........
  1. #1
    Just Joined! sam619's Avatar
    Join Date
    Nov 2009
    Posts
    16

    Smile installing perl modules using CPAN

    Hi,
    can anyone provide me information about installing perl modules using CPAN.....

  2. #2
    Linux Engineer jledhead's Avatar
    Join Date
    Oct 2004
    Location
    North Carolina
    Posts
    1,077
    Code:
    cpan -i Name::ofModule
    for example
    Code:
    cpan -i DateTime::Set
    you could also do
    Code:
    perl -MCPAN -e shell
    and then at the cpan> type
    Code:
    install DateTime::Set
    or whatever your trying to install

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •