Am not able to run Parsing CSV File -in Perl

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • janardhan
    New Member
    • Apr 2015
    • 1

    Am not able to run Parsing CSV File -in Perl

    Hi,

    Am trying to run perl script , While running perl script am getting below errors, Here am trying merge input file, please help me to resolve below error,
    Code:
    Can't locate Text/CSV/Unicode.pm in @INC (you may need to install the Text::CSV::Unicode module) (@INC contains: C:/Strawberry/perl/site/lib C:/Strawberry/perl/vendor/lib C:/Strawber
    ry/perl/lib .) at aggregate-invoice-csv.pl line 7.
    BEGIN failed--compilation aborted at aggregate-invoice-csv.pl line 7.
    thanks in advance..

    thanks
    Janrdhan
    Last edited by numberwhun; Apr 7 '15, 05:29 PM.
  • RonB
    Recognized Expert Contributor
    • Jun 2009
    • 589

    #2
    The error message is pretty clear. It can't find the Text::CSV::Unic ode module which the script needs. You need to install that module.

    Do you know how to install modules?

    Comment

    • Raj4perl
      New Member
      • Aug 2014
      • 12

      #3
      cpan App::cpanminus

      Does it works?

      Comment

      Working...