Perl 模块安装 - Unix

发布于 2024-12-10 18:46:28 字数 41 浏览 0 评论 0原文

我想了解 unix 中 perl 模块的安装。 谁能解释一下步骤吗?

I would like to know about the perl module installations in unix.
Can anyone please explain the steps?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

忘年祭陌 2024-12-17 18:46:28

如果有关于此的手册页作为标准 Perl 安装的一部分就好了。

If only there was a manual page about this which came as part of the standard Perl installation.

永不分离 2024-12-17 18:46:28

除了使用 cpan 客户端之外,还有另一个名为 cpanm (cpanminus) 越来越受欢迎。

安装 cpanm

curl -L http://cpanmin.us | perl - --self-upgrade

或者:

wget -O - http://cpanmin.us | perl - --self-upgrade

使用 cpanm 安装模块

cpanm Name::of::Module

sudo 使用 -S 标志。 了解有关 cpanm 的更多信息

Apart from using the cpan client, there is another client named cpanm (cpanminus) which is gaining in popularity.

Installing cpanm

curl -L http://cpanmin.us | perl - --self-upgrade

Or:

wget -O - http://cpanmin.us | perl - --self-upgrade

Installing modules with cpanm

cpanm Name::of::Module

Use the -S flag for sudo. Read more about cpanm.

森林迷了鹿 2024-12-17 18:46:28

在这些链接中,如何安装 CPAN 模块如何手动安装 Perl 模块并使用 CPAN命令,您可以找到您需要的所有信息。我希望它有帮助。

In these links, How to install CPAN modules and How To Install Perl Modules Manually and Using CPAN command, you may find the all the information that you need. I hope it helps.

ˉ厌 2024-12-17 18:46:28

您可以使用 CPAN 手动安装 Perl 模块(参见 docs) ://stackoverflow.com/users/7231/davorg">davorg 或 巴克斯
或者尝试在软件包中查找您是否使用具有软件包管理功能的 UNIX 系统。

例如,要安装模块 Net::Twitter,您可以这样做:

perl -MCPAN -e 'install Net::Twitter'

或者例如,如果您使用的是 Debian Squeeze:

aptitude install libnet-twitter-perl

有时您正在寻找的模块可能会被打包

You can install Perl module manually using CPAN (cf. docs mentioned by davorg or bacchus)
or try to find out in the packages if you are using unix systems with packages management.

For example to install the module Net::Twitter you can do :

perl -MCPAN -e 'install Net::Twitter'

or for example if you are on a Debian Squeeze :

aptitude install libnet-twitter-perl

Sometime the module you are looking for may be packaged

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文