in reply to Re: execution of a perl script
in thread execution of a perl script

Just to elaborate on the above suggestion, using CPAN.pm would make this trivial. Here's an example:
use CPAN; use CPAN::Shell; for(qw/Tie::File Foo Bar/) { CPAN::Shell->install( $_ ); }