in reply to Re^2: Can't locate perl module in @INC
in thread Can't locate perl module in @INC
should have been:perl -l HTML::TableExtract
In any case, it appears that the module is installed correctly. I expect the following code in a script to work just fine too (no error). Just put these 3 line in a .pl file, then execute it:perldoc -l HTML::TableExtract
use strict; use warnings; use HTML::TableExtract;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Can't locate perl module in @INC
by pamartin (Novice) on Mar 27, 2010 at 23:27 UTC |