Installing Net::Amazon::S3 in Debian? This might help. I'm documenting it here because I have had to do this so many times in the past few weeks. It's not hard, but it's definitely annoying to have to find all the modules that Net::Amazon::S3 depends on.
And then if you get tired of any of the warnings when you "use" it, try this at the top of your code:
apt-get install libxml-libxml-perl libmoose-perl libmoosex-strictconstructor-perl libregexp-common-perl libclass-mop-perl libdatetime-format-iso8601-perl libdigest-md5-file-perl libnamespace-clean-perl libtest-use-ok-perl libtime-duration-parse-perl libdatetime-format-natural-perl libdatetime-set-perl libdatetime-perl libexception-class-perl libtest-warn-perl libtest-differences-perl libtest-deep-perl libmodule-build-perl liblwp-useragent-determined-perl
cpan Data::Stream::Bulk
cpan DateTimeX::Easy
cpan MooseX::Types::DateTimeX
cpan DateTime::Format::HTTP
cpan Net::Amazon::S3And then if you get tired of any of the warnings when you "use" it, try this at the top of your code:
open(my $olderr, '>&', \*STDERR);
close(STDERR);
eval('use Net::Amazon::S3');
open(STDERR, '>&', $olderr);