|
I have Active perl installed on my windows xp pc and downloaded the Text-CSV_XS module.
I extracted the files to a directory "text" under c:\perl\site\lib.
Then in the text directory, I ran "perl makefile.pl" which seemed to run ok.
Then I entered "makefile" and got "'makefile' is not a recognised command...".
I tried "perl makefile" and got a whole heap of error messages.
When I try to use the module in a program:
#!perl -wl
use Text::CSV_XS;
$csv = Text::CSV_XS->new (\%attr);
I get "Can't locate loadable object for module Text::CSV_XS in @INC...."
Could someone tell me what I am doing wrong please? |