6

我通过以下方式安装了 Perl 6 解释器 Rakudo:

sudo apt-get install rakudo

我正在关注有关安装 Perl 6 模块的教程:

http://perl6maven.com/how-to-install-perl6-modules

在最后一步我得到这个错误:

perl6 bootstrap.pl===SORRY!=== Error while compiling /home/daniel/test/panda/bootstrap.pl
No compiler available for Perl v6.c
at /home/daniel/test/panda/bootstrap.pl:3
------> use v6.c⏏;

版本信息:

Ubuntu 16.04.2 LTS
This is perl6 version 2015.11 built on MoarVM version 2015.11

如何安装缺少的编译器?

4

2 回答 2

6

警告:此解决方案可用于开发,但对于生产,建议手动编译解释器,直到 Ubuntu 存储库不会更新。

Panda链接教程中描述的已折旧。我应该zef用来安装 Perl 模块。

我的 Perl 版本太旧了。在阅读了关于 not working version的issue 380后,我意识到了这一点6.c

关于安装最新 Perl 的正确教程6.cUbuntu这里:

http://linuxtot.com/installing-perl-6-on-debian-or-ubuntu/

现在我的rakudo -v打印:

This is Rakudo version 2017.07-132-gabf1cfe built on MoarVM version 2017.07-318-g604da4d
implementing Perl 6.c.

一切都很好。


以下命令摘自下面链接的教程:

apt-get install build-essential git libssl-dev
git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
echo 'export PATH=~/.rakudobrew/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
rakudobrew build moar
rakudobrew build zef

现在安装perl6模块:

zef install Module::Name
于 2017-08-06T05:09:04.177 回答
3

如果您愿意从源代码安装自己的软件,请尝试以下操作(从https://rakudo.perl6.org/downloads/star/更新最新 Rakudo Star 的 URL ):

wget -O rakudo-star-2017.07.tar.gz https://rakudo.perl6.org/downloads/star/rakudo-star-2017.07.tar.gz
tar -xvf rakudo-star-2017.07.tar.gz
cd rakudo-star-2017.07
perl Configure.pl --backend=moar --gen-moar
make
make rakudo-test
make install

然后将以下路径添加到您的$PATH(当然,替换/path/to为实际路径):

/path/to/rakudo-star-2017.07/install/bin
/path/to/rakudo-star-2017.07/install/share/perl6/site/bin

我为此使用了一个模块文件:

#%Module1.0
## Metadata ###########################################
set this_module   rakudo-star
set this_version  2017.07
set this_root     /path/to/$this_module/$this_module-$this_version/install
set this_docs     http://rakudo.org/documentation/

#######################################################
## Module #############################################
proc ModulesHelp { } {
        global this_module this_version this_root this_docs
        puts stderr "$this_module $this_version"
        puts stderr "****************************************************"
        puts stderr " $this_docs"
        puts stderr "****************************************************\n"
}

module-whatis   "Set up environment for $this_module $this_version"

prepend-path  PATH  $this_root/bin
prepend-path  PATH  $this_root/share/perl6/site/bin
于 2017-08-07T13:27:31.547 回答