1

我在使用 Debian(6.0.7-i386)的虚拟机上,我想学习 Perl(使用 Curtis Poe 编写的Beginning Perl)。

我有麻烦perlbrew

  1. 我安装perlbrew

    wget --no-check-certificate -O - http://install.perlbrew.pl | bash
    
  2. 我将以下命令添加到~/.bashrc

    source ~/perl5/perlbrew/etc/bashrc
    
  3. 之后,我注销并重新登录,然后运行以下命令:

    perlbrew install perl-5.14.2
    

我有

在此处输入图像描述

请帮我


输出的英文翻译:

tar (child): bzip2: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
/bin/tar: Child returned status 2
/bin/tar: Error is not recoverable: exiting now
4

2 回答 2

5

它失败了,因为bzip2没有安装命令行实用程序(在 PATH 中找不到)。

于 2014-07-16T12:49:40.030 回答
0

谢谢ikegami,原来如此。

我做了这个

aptitude install bzip2

现在它正在工作。

于 2014-07-16T21:04:29.180 回答