Windows 上 Perl 的 site 和 site\lib 目录位置
我是一名 PHP 程序员,刚刚被分配任务来处理一些 Perls 的东西 - 我需要安装模块。
但是任何人都可以为我澄清安装模块时“lib”和“site\lib”之间的区别吗?根据什么标准将一个模块安装在一个模块而不是另一个模块中?
这在 Windows 上真的相关吗(抱歉,从来没有在 UNIX 上工作过)。
我正在考虑使用 Strawberry Perl 5.12.2.0。
I am a PHP programmer and have just been assigned task to work on some Perls stuff - I need to install modules.
But can anybody clarify for me the difference between 'lib' and 'site\lib' when install modules. By what criterion is one module installed in one instead of the other?
Is this really relevant on Windows (sorry never worked on UNIX).
I am looking at using Strawberry Perl 5.12.2.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
风筝有风,海豚有海2024-11-05 20:28:39
最新的 Strawberry Perl 名为:strawberry-perl-5.28.1.1-64bit-portable,
将 @INC
指定的位置显示为:
@INC:
D:/myBuilds/strawberry-perl-5.28.1.1-64bit-portable/perl/site/lib
D:/myBuilds/strawberry-perl-5.28.1.1-64bit-portable/perl/vendor/lib
D:/myBuilds/strawberry-perl-5.28.1.1-64bit-portable/perl/lib
供应商的内容...仍然未知...
(请随意编辑此内容。)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
lib/
包含 Perl 附带的模块。site/lib/
包含您自己安装的模块。 Perl 本身对两者没有任何区别。如果对于全新安装来说
site/lib/
不为空,则可能是因为 Strawberry 在其发行版中包含通常不使用 Perl 打包的模块。 (我知道 ActivePerl 可以。)lib/
contains the modules that come with Perl.site/lib/
contains the module you've installed yourself. Perl itself doesn't make any distinction between the two.If
site/lib/
isn't empty for a fresh install, it's probably because Strawberry includes modules in their distro that aren't normally packaged with Perl. (I know ActivePerl does.)