There are some Perl modules that could previously be installed with: yum install "perl(DateTime)" Under CentOS7. In CentOS8 I get the error:
No match for argument: perl(DateTime)
I have the same problem for perl(Template), perl(YAML::XS), perl(Crypt::Eksblowfish::Bcrypt) and perl(JSON::XS)
I tried searching with:
yum provides *DateTime*
But I can't find anything there either.
perl-DateTime
? On CentOS7 (and before) those were names for the packages for Perl modules -- does this not work anymore? – Caplinperl(Module::Name)
is the syntax for what modules a perl package in RH distros provide. dnf/yum accept it directly and look up inprovides
when it doesn't match a package name. – Tamatamablecpanm
, i.e.sudo cpanm Date::Time
. I tested this in a docker container for CentOS8 and it installedDate::Time
to/usr/local/share/perl5
– Streamlinersudo cpanm DateTime
also works fine in my container. It just takes more time to install thanDate::Time
:) – Streamliner