Can't locate Sys/AlarmCall.pm in @INC的解决方法

如题所报错误是perl没有安装相应的类库导致的。

perl在安装类库或插件依赖于cpan工具,下面先安装perl依赖扩展,再安装cpan工具,最后安装类库。
根据报错信息,是缺少sys类下的AlarmCall.pm,安装的时候格式为Sys::AlarmCall,以下是详细步骤。

sudo apt-get install liblocal-lib-perl
sudo apt-get install cpanminus
cpan -i Sys::AlarmCall
cpan -i IO::Pty
cpan -i File::Pid
cpan -i IO::Pty::Easy

原文链接:Can’t locate Sys/AlarmCall.pm in @INC的解决方法–FrancisSoung的博客

    原文作者:FrancisSoung
    原文地址: https://segmentfault.com/a/1190000003017717
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞