0

I have a standard installation of ActivePerl. I need to install the package that is not included to the installation.

Is there any way to install the package without using ppm / CPAN? (it is supposed to be installed as part of other program)

NOTE: It supposed to work under Windows

4

1 回答 1

0

Perl 包是子例程和包变量在内存中的临时存储。也许您的意思是 Perl发行版

  1. 首先,cpanm如果您还没有安装它。

    cpan App::cpanminus
    

    是的,这适用于 Windows。不,您不必安装编译器。cpan如有必要,将为您执行此操作。

  2. 然后,通过将其文件名传递给cpanm. 例如,

    cpanm IPC-System-Simple-1.21.tar.gz
    

    这将执行所需的配置,安装指定的先决条件,准备发行版的安装内容(例如,通过构建任何需要构建的文件),运行发行版的测试并安装发行版。

于 2013-08-12T17:08:53.710 回答