Installing Older Version of Module in Active Perl

后端 未结 2 618
再見小時候
再見小時候 2021-01-27 06:20

I am trying to install the Date::Manip Module in Perl. I am running Perl Version 5.14.2 and it does not seem to be installing successfully through the PPM. (PPM throws a 401 Acc

相关标签:
2条回答
  • 2021-01-27 06:35

    Try to use the below link and download then install.

    https://metacpan.org/pod/Date::Manip

    0 讨论(0)
  • 2021-01-27 06:43

    The reason the 401 error occurs is because you are using ActivePerl 5.14 which is no longer considered as a Community Edition. This means you no longer have access to the PPM server to install modules unless you buy a license from ActiveState.

    See here for reference http://community.activestate.com/taxonomy/term/515

    You have several options:

    • You could buy an ActiveState Business Edition License which will give your access to the PPM repository again.
    • If you have MinGW and dmake installed, you can install this module from CPAN instead. Just enter cpan Date::Manip in the command-line.
    • Upgrade to the latest version of ActivePerl. (But you'll have the same problem again when this version expires.)
    • You could install another Perl distribution, like Strawberry Perl.
    0 讨论(0)
提交回复
热议问题