in reply to Re^2: Can't locate perl module in @INC
in thread Can't locate perl module in @INC

I had a typo in my post:
perl -l HTML::TableExtract
should have been:
perldoc -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:
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

    Your three lines work just fine.