在 Ubuntu 中自动安装基于包的 Perl 模块
我想安装特定 Perl 脚本所需的 Perl 模块,例如 perl-depends
工具列出的模块。但是,我想在 Ubuntu 中使用 apt-get 来完成此操作,这意味着通过包存储库而不是通过 CPAN 安装模块。
最类似的问题(例如这个)解决了通过 CPAN 实现这一点的方法。
I would like to install the Perl modules required by a specific Perl script, such as those listed by the perl-depends
tool. However, I would like to do that in Ubuntu using the apt-get
, meaning installing the modules through the package repository and not through CPAN.
Most similar questions (such as this one) address ways of doing that through CPAN.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Debian-Apt-PM
Debian-Apt-PM
这将列出所有包含 perl 的软件包:
sudo apt-cache search perl *
然后:
sudo apt-get install pkg_name_in_output
This will list all packages having perl in them:
sudo apt-cache search perl *
then:
sudo apt-get install pkg_name_in_output