如何在不使用CPAN.pm的情况下安装Perl模块?

前端之家收集整理的这篇文章主要介绍了如何在不使用CPAN.pm的情况下安装Perl模块?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可能吗?

解决方法

如果您下载源代码,并阅读README文件。这可能会告诉你你应该做的
perl Makefile.PL
make
make test
make install

要么

perl Build.PL
./Build
./Build test
./Build install
原文链接:https://www.f2er.com/Perl/172973.html

猜你在找的Perl相关文章