marinersk has asked for the wisdom of the Perl Monks concerning the following question:
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).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: AutoLoader Failure?
by gellyfish (Monsignor) on Apr 28, 2006 at 15:12 UTC | |
by marinersk (Priest) on Apr 28, 2006 at 15:19 UTC | |
by gellyfish (Monsignor) on Apr 28, 2006 at 15:29 UTC | |
|
Re: AutoLoader Failure?
by neilwatson (Priest) on Apr 28, 2006 at 15:09 UTC | |
|
Re: AutoLoader Failure?
by Anonymous Monk on Apr 30, 2006 at 22:18 UTC |