我在使用Debian(6.0.7-i386)的虚拟机上,我想学习Perl(由Curtis Poe编写的Beginning Perl)。
我遇到perlbrew
。
我使用
安装了perlbrew
wget --no-check-certificate -O - http://install.perlbrew.pl | bash
我将以下命令添加到~/.bashrc
:
source ~/perl5/perlbrew/etc/bashrc
之后,我退出并退回,然后运行以下命令:
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
答案 0 :(得分:5)
它失败了,因为未安装bzip2
命令行实用程序(在PATH中找不到)。
答案 1 :(得分:0)
谢谢池上,就是这样。
我做了这个
aptitude install bzip2
现在它正在工作。