in reply to How do I get my script to see my modules?

If your modules are installed in a subdirectory of the location of your script, you can try the following:
use File::Basename; use lib dirname( $0 ); use MyModule;
Dave