First, take a look to see where Thread.pm actually resides, If its path is ~/pathToThread, add a 'use lib' directive to your script
use lib ('~/pathToThread'); This prepends the specified directory to @INC Also, make sure you are referring your script to the right interpreter.Use # ~/pathToTheRightPerl/perl5.19 at the top. -----Original Message----- From: pevee [SMTP:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 2:00 AM To: [EMAIL PROTECTED] Subject: Can't locate Thread.pm in @INC Hi, I encounter this message when I run the dbiproxy --configfile=c:\tmp\dbiproxy.conf. How can I fix it? Can't locate Thread.pm in @INC (@INC contains: C:/Perl/lib C:/Perl/site/lib .) a t C:/Perl/site/lib/Net/Daemon.pm line 267. I am using Perl 5.19 because I wish to use Thread rather than iThread. Thank you, Calvin