in reply to How to install Date::Calc on a Mac

CPAN is your friend.
perldoc CPAN
But essentially
perl -MCPAN -e 'install Date::Calc'
or
perl -MCPAN -e shell install Date::Calc install Image::Grab
The beauty of using the CPAN shell is that it will install the prerequisites for you.

Neil