I recently started developing Perl and used CPAN to install all of my packages. I was wondering if there are โbest practicesโ for managing the required packages for a script or application. Until now, I am doing this in an inelegant and cumbersome way. I have a script that looks like this:
install Foo::Bar
install Zulu::Car
...
and then i do
$perl -MCPAN -e shell < mycpan.foo
source
share