Text::CSV shouldn't be that hard to use. I must be having a moron-in-brain moment. Can someone point out my lunacy here (other than working in a Windows environment; that one's not my choice per se)?

1. I downloaded Text-CSV-0.01.tar.gz
2. I unpacked CSV.pm and put it in C:\Perl\site\lib\Text
3. I wrote the following test script:

#!/usr/bin/perl -w use strict; use Text::CSV; my $csvobj = new Text::CSV; my $csvver = $csvobj->version(); print "Successfully loaded and invoked Text::CSV v$csvver\n"; exit;

4. I ran it, with the following rather unexpected output:

D:\Steve\Perl>perl test-text-csv.pl Can't locate auto/Text/CSV/autosplit.ix in @INC (@INC contains: D:/Ste +ve/Perl C:/Perl/lib C:/Perl/site/lib .) at C:/Perl/lib/AutoLoader.pm +l ine 160. at C:/Perl/site/lib/Text/CSV.pm line 23 Can't locate auto/Text/CSV/new.al in @INC (@INC contains: D:/Steve/Per +l C:/Perl/lib C:/Perl/site/lib .) at test-text-csv.pl line 7

So -- where's my brain damage?

Janitored by Arunbear - replaced pre tags with code tags (to prevent distortion of site layout).


In reply to AutoLoader Failure? by marinersk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.