in reply to Can't find module error

Add:
use lib 'c:\h\COTS\Perl\lib';
To the top of your script to search for the module in a non standard directory(e.g. Those not specified in @INC).
HTH,
Chris

Replies are listed 'Best First'.
Re: Re: Can't find module error
by kirk123 (Beadle) on Apr 15, 2003 at 21:14 UTC
    Chris, It did not work. I am getting the following error"
    Can't locate lib.pm in @INC
    (@INC contains: c:\h\coe\comp\perl\lib\site c:\h\coe \comp\perl\lib c:\perl\lib c:\perl\lib\site c:\perl\lib\site .)
    at dir.pl line 3.
    BEGIN failed--compilation aborted at dir.pl line 3.
    "
    my scripts as follow:
    #!/h/COE/Comp/Perl/bin/perl use lib `c:/h\COTS\Perl\lib`; use File::Find; find(\&wanted,'/h', '/h/COE' ); sub wanted{ #-d $_ && print "$File::Find::name\n"; }
    thanks

    2003-04-16 edit by ybiC: <tt> for error message, <code> for script

      Sorry to respond so late, but I was already gone by the time you responded. I doubt you'll still see this, but I'll check for updates regardless.

      Did arturo's response point you in the right direction? If not, do you have an update or still need help? Let us know if you're still stuck.

      Chris