0

我正在尝试安装 CPAN 模块 Statistics::ChiSquare。我在我的 Windows 7 机器上运行 Strawbwerry perl 和 Padre。首先我安装了 cpan.pm。然后尝试安装模块,但收到以下错误:

C:\Windows\System32>cpan App::cpanminus

C:\Windows\System32>perl -MCPAN -e 'install Statistics::ChiSquare'
Set up gcc environment - 4.4.3
Can't find string terminator "'" anywhere before EOF at -e line 1.

谢谢

4

1 回答 1

3

对于 Windows,您必须在命令行上使用双引号:

perl -MCPAN -e "install Statistics::ChiSquare"

或者干脆

cpan Statistics::ChiSquare
于 2013-01-26T17:56:01.513 回答