使用 Strawberry Perl 安装模块

发布于 2024-11-19 11:59:13 字数 399 浏览 6 评论 0原文

到目前为止,我使用了 ActiveStateActivePerl,并使用 ppm 来安装模块。

上周我转向 Strawberry Perl,但我不知道应该如何使用 Strawberry 安装模块珀尔。关于如何使用 Strawberry Perl 完成模块安装的一些信息是什么,或者是否有一些关于如何安装新模块的链接?

Until now I used ActiveState's ActivePerl, and used the ppm for installing modules.

Last week I moved to Strawberry Perl, but I don't know how I should install modules using Strawberry Perl. What is some information on how module installation is done using Strawberry Perl or is there some link on how to install new modules?

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

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

发布评论

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

评论(4

素年丶 2024-11-26 11:59:13

您仍然可以使用 ppm,但不建议这样做。从Strawberry PerlStrawberry Perl(64位)运行CPAN客户端,子文件夹Tools,条目位于开始菜单。

在那里输入install Module::Name

You can still use ppm, but it is not recommended. Run CPAN client from the Strawberry Perl or Strawberry Perl (64-bit), sub folder Tools, entry in the Start menu.

Type install Module::Name there.

不及他 2024-11-26 11:59:13

正如 Alexandr 所说,您可以通过开始菜单使用 CPAN 客户端。您还可以像在 Unix 上一样从 DOS 窗口安装模块:

perl -MCPAN -e shell
install Quantum::Entanglement

您还可以从 CPAN 下载 .tar.gz,将其解压缩并像在 Unix 中一样安装:

cd Module-Name-1.23
perl Makefile.PL
dmake
dmake test
dmake install

您可能需要确保您的 %PATH% 环境变量具有访问 Strawberry Perl 的正确条目,并且不包含 dmake 的其他副本或者gcc,这有时会导致头痛。

As Alexandr says, you can use the CPAN client via the start menu. You can also install modules just as you would on Unix from the DOS window:

perl -MCPAN -e shell
install Quantum::Entanglement

You can also download the .tar.gz from CPAN, unzip it and install as you would in Unix:

cd Module-Name-1.23
perl Makefile.PL
dmake
dmake test
dmake install

You may need to make sure your %PATH% environment variable has the right entry to get to Strawberry Perl, and does not contain other copies of dmake or gcc, which will sometimes lead to headaches.

嘴硬脾气大 2024-11-26 11:59:13

更改目录:

cd C:\Strawberry\perl\bin

然后

C:\Strawberry\perl\bin>cpan Lingua::EN::Sentence

模块将自动安装。

Change the directory:

cd C:\Strawberry\perl\bin

Then

C:\Strawberry\perl\bin>cpan Lingua::EN::Sentence

and the module will install automatically.

月下客 2024-11-26 11:59:13

CPAN 是最简单的安装方法。

正如 Alex 指出的,您可能需要下载 .tar。 gz 并解压它。自从他写下答案以来,Strawberry Perl 已弃用 dmake,你应该使用 gmake 代替。

CPAN is the easiest installation method.

As Alex has noted, you may have to download a .tar.gz and unzip it. Since he wrote his answer, Strawberry Perl has deprecated dmake, and you should use gmake instead.

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