如何在 ActivePerl 中安装模块?
我想安装 SGML::Parser::OpenSP 在 ActivePerl 中。知道我应该遵循什么步骤吗?
I want to install SGML::Parser::OpenSP
in ActivePerl. Any idea what steps should I follow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果可以找到其他 PPM 存储库,您可以将它们添加到 PPM。最简单的方法是查看 Kobesearch。
对于您的模块,它显示 Perl 5.8 的一个 PPM 。
但是,如果您在 PPM 中找不到可用的模块,则可以使用 PPM::制作。下载模块的 tarball,解压并运行
make_ppm
。如果您正确配置了构建 Perl 模块,您将得到一个 PPM 文件。然后,您可以从命令行使用ppm install foo.ppm
安装它。You can add additional PPM repos to PPM, if you can find them. The easiest way to do so is to look at Kobesearch.
For your module, it shows one PPM for Perl 5.8.
But if you can't find your module in a PPM that will work, you can build a PPM easily by using PPM::Make. Download a tarball of the module, unpack it and run
make_ppm
. If you are properly configured to build Perl modules, you will wind up with a PPM file. You can then install it withppm install foo.ppm
from the command line.http://docs.activestate.com/activeperl/5.10/faq/ ActivePerl-faq2.html
http://docs.activestate.com/activeperl/5.10/faq/ActivePerl-faq2.html