Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I'm uploading a few modules into a local module directory for use with a script. I have them in the format ./modules/HTML/Template.pm and ./modules/Text/CSV.pm. It works fine for HTML::Template but not for Text::CSV. Here's the import code:
use lib 'modules'; use HTML::Template; use Text::CSV;
Here's the error:
Can't locate modules/auto/Text/CSV/autosplit.ix in @INC (@INC contains: modules .. (more perl directories)
I don't understand the /auto subdirectory, or why it's unable to find Text::CSV (it is located in modules/Text/CSV). Thanks for your help :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Uploading Text::CSV
by aquarium (Curate) on Jun 26, 2003 at 04:45 UTC | |
by Anonymous Monk on Jun 26, 2003 at 04:49 UTC | |
by tilly (Archbishop) on Jun 26, 2003 at 07:28 UTC | |
by edoc (Chaplain) on Jun 26, 2003 at 10:22 UTC | |
by Anonymous Monk on Jun 26, 2003 at 12:58 UTC |