in reply to Re: Determining module dependencies
in thread Determining module dependencies


Get Devel::Modlist and then run
perl -d:Modlist=stop,path script.pl
which should give you all modules along with their path for script.pl.
The advantage is that you don't have to know all the modules installed.

artist