免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1655 | 回复: 3
打印 上一主题 下一主题

Perl 模块的自动安装 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-03-17 17:42 |只看该作者 |倒序浏览
我写的脚本,上传到github上,但脚本中用到了cpan中的一些模块,如:
  1. use LWP::Simple;
  2. use Data::Dumper;
  3. use XML::Simple;
复制代码
用什么方法可以使别的开发者自动安装脚本中依赖的Perl模块?
谢谢~

论坛徽章:
0
2 [报告]
发表于 2013-03-17 21:06 |只看该作者
本帖最后由 Perl_Er 于 2013-03-17 21:11 编辑

回复 1# 好吃的terry


    把你自己的脚本也做成一个模块,然后在Makefile.PL里面定义依赖关系,http://www.perlmonks.org/?node_id=431702#makefile_pl
Makefile.PL
There is a file called Makefile.PL. By looking at it, you might think that you actually don't need to do anything to it; and that might be true, most of the times.

If you used h2xs, you should check its parameters. Otherwise, you should be fine.

However, there is one situation when you absolutely should update Makefile.PL: when you use other modules. That is, when your module has dependencies.

Just go there and add something like this:


然后用cpanm安装
http://gugod.org/2010/02/cpanm-cpan/

论坛徽章:
46
15-16赛季CBA联赛之四川
日期:2018-03-27 11:59:132015年亚洲杯之沙特阿拉伯
日期:2015-04-11 17:31:45天蝎座
日期:2015-03-25 16:56:49双鱼座
日期:2015-03-25 16:56:30摩羯座
日期:2015-03-25 16:56:09巳蛇
日期:2015-03-25 16:55:30卯兔
日期:2015-03-25 16:54:29子鼠
日期:2015-03-25 16:53:59申猴
日期:2015-03-25 16:53:29寅虎
日期:2015-03-25 16:52:29羊年新春福章
日期:2015-03-25 16:51:212015亚冠之布里斯班狮吼
日期:2015-07-13 10:44:56
3 [报告]
发表于 2013-03-17 22:09 |只看该作者
在代码的最开始这么写

BEGIN {
    eval {
        require LWP::Simple;
    };
    if ($@ =~ /^Can't locate/) {
        print "install module LWP::Simple";
        # 调用 cpan 命令安装模块
    }
}

# 正文

use LWP::Simple;

论坛徽章:
0
4 [报告]
发表于 2013-03-21 10:14 |只看该作者
回复 3# zhlong8


    感谢回答,感觉写一个类似的运行时依赖模块自动安装比较有意思。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP