If you are getting below error while installing any application on linux then perl date time module is missing.

To resolve this issue, you need to install the DateTime Perl module. You can do this by using the CPAN (Comprehensive Perl Archive Network) package manager by running the following command in your terminal:

Can't locate DateTime.
pm in @INC (@INC contains: /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .) at gatherbot_en.pl line 13.
BEGIN failed--compilation aborted at gatherbot_en.pl line 13.

You can use below command to install Datetime on server.

yum install perl-DateTime-TimeZone -y

After that if you are getting below error.

Can't locate Date/Parse.pm in @INC

Then please run below command. It will ask to install some modules then keep on typing yes or hit enter.

cpan install Date::Parse