I'm very new to Perl, and I need your help. I want to install the DateTime packages into my Perl 5.10 installation in Ubuntu 9.10. I found a post elsewhere that said to use the following command:
perl install-module.pl DateTime::Locale
Unfortunately, there doesn't seem to be an install-module.pl script on my system. Can anyone help me out?
The other thing is that the script I want to run has this code:
use DateTime; #The best date and time handling, great for
use DateTime::Format::Strptime; # working with log files.
use DateTime::Locale::root; #
Are the Format::Strptime and Locale::root parts of the overall DateTime package?
Thanks....