Perl 模块安装 - Unix
我想了解 unix 中 perl 模块的安装。 谁能解释一下步骤吗?
I would like to know about the perl module installations in unix.
Can anyone please explain the steps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果有关于此的手册页作为标准 Perl 安装的一部分就好了。
If only there was a manual page about this which came as part of the standard Perl installation.
除了使用
cpan
客户端之外,还有另一个名为cpanm
(cpanminus) 越来越受欢迎。安装
cpanm
或者:
使用
cpanm
安装模块对
sudo
使用-S
标志。 了解有关cpanm
的更多信息。Apart from using the
cpan
client, there is another client namedcpanm
(cpanminus) which is gaining in popularity.Installing
cpanm
Or:
Installing modules with
cpanm
Use the
-S
flag forsudo
. Read more aboutcpanm
.在这些链接中,如何安装 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.
您可以使用 CPAN 手动安装 Perl 模块(参见 docs) ://stackoverflow.com/users/7231/davorg">davorg 或 巴克斯)
或者尝试在软件包中查找您是否使用具有软件包管理功能的 UNIX 系统。
例如,要安装模块 Net::Twitter,您可以这样做:
或者例如,如果您使用的是 Debian Squeeze:
有时您正在寻找的模块可能会被打包
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 :
or for example if you are on a Debian Squeeze :
Sometime the module you are looking for may be packaged