无法使用perlbrew安装perl 5.14.2

时间:2014-07-16 12:34:48

标签: perl install perlbrew

我在使用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
    
  4. 我得到了

    enter image description here

    请帮帮我


    输出的英文翻译:

    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
    

2 个答案:

答案 0 :(得分:5)

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

答案 1 :(得分:0)

谢谢池上,就是这样。

我做了这个

aptitude install bzip2

现在它正在工作。