我想使用 now() 函数在 perl 中显示当前日期和时间。我正在使用 Active Perl 软件运行此脚本,但出现错误。
#! /usr/bin/perl
use Date::Parse;
$date = str2time(now());
print "$date\n";
我收到错误消息:
C:\Users\admin\Desktop>perl test.pl
Can't locate Date/Parse.pm in @INC (@INC contains: C:/Perl/site/lib C:/Perl/lib
.) at test.pl line 3.
BEGIN failed--compilation aborted at test.pl line 3.
请帮忙。