Home > Archive > PERL Beginners > May 2004 > Installation Problem -- Text::CSV
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Installation Problem -- Text::CSV
|
|
| Jeff Westman 2004-05-19, 11:30 am |
| Hi All,
I am running Active Perl 5.8.0, and installed CSV.pm into
c:\perl\lib\text. When I run the test.pl file with it I get
C:\> perl test.pl
1..20
Can't locate auto/Text/CSV/autosplit.ix in @INC (@INC contains:
C:/Perl/lib C:/Perl/site/lib .) at C:/Perl/lib/AutoLoader.pm line
158.
at C:/Perl/lib/Text/CSV.pm line 23
ok 1
Can't locate auto/Empty_Subclass/new.al in @INC (@INC contains:
C:/Perl/lib C:/Perl/site/lib .) at test.pl line 27
but I see an 'autosplit.pm' in c:\perl\lib.
What's going on, and how do I fix it? Any help would be
appreciated.
TIA
Jeff
__________________________________
Do you Yahoo!?
SBC Yahoo! - Internet access at a great low price.
http://promo.yahoo.com/sbc/
| |
| Bob Showalter 2004-05-19, 1:30 pm |
| Jeff Westman wrote:
> Hi All,
>
> I am running Active Perl 5.8.0, and installed CSV.pm into
> c:\perl\lib\text. When I run the test.pl file with it I get
>
> C:\> perl test.pl
> 1..20
> Can't locate auto/Text/CSV/autosplit.ix in @INC (@INC contains:
> C:/Perl/lib C:/Perl/site/lib .) at C:/Perl/lib/AutoLoader.pm line
> 158.
> at C:/Perl/lib/Text/CSV.pm line 23
> ok 1
> Can't locate auto/Empty_Subclass/new.al in @INC (@INC contains:
> C:/Perl/lib C:/Perl/site/lib .) at test.pl line 27
>
> but I see an 'autosplit.pm' in c:\perl\lib.
>
> What's going on, and how do I fix it? Any help would be
> appreciated.
Copying files around is not the proper way to install modules. If you use
ActiveState, you should use the PPM tool to install modules if at all
possible.
To install Text::CSV, try:
C:> ppm install Text-CSV
| |
| Jeff Westman 2004-05-19, 2:30 pm |
| Bob Showalter <Bob_Showalter@taylorwhite.com> wrote:
> Jeff Westman wrote:
> line
>
> Copying files around is not the proper way to install modules. If
> you use
> ActiveState, you should use the PPM tool to install modules if at
> all
> possible.
>
> To install Text::CSV, try:
>
> C:> ppm install Text-CSV
Worked perfect when installed correctly <g>
Thanks for the help!!!
Jeff
__________________________________
Do you Yahoo!?
SBC Yahoo! - Internet access at a great low price.
http://promo.yahoo.com/sbc/
|
|
|
|
|