在预编译的XXX可能的版本歪斜

问题描述 投票:6回答:1

我安装包到虚拟机(ubuntu18.04)。下面是我使用的指令:

apt-get install perl6 && \
 git clone https://github.com/ugexe/zef.git && cd zef && perl6 -I. bin/zef install . && \
 /usr/lib/perl6/site/bin/zef install Shell::Command && \
 PYTHON_CONFIG=/usr/bin/python3-config \
 /usr/lib/perl6/site/bin/zef -v install https://github.com/eatingtomatoes/Inline-Python3.git --/test --debug

以下是输出:

....
===> Building [OK] for Inline::Python3:ver<0.1>
===> Installing: LibraryMake:ver<1.0.0>:auth<github:retupmoca>
===> Install [OK] for LibraryMake:ver<1.0.0>:auth<github:retupmoca>
===> Installing: Inline::Python3:ver<0.1>
===> Install [FAIL] for Inline::Python3:ver<0.1>: ===SORRY!===
Probable version skew in pre-compiled
 'site#sources/95D204DDA68A3E05E891AA531EBED9270C46B3F7 
(Inline::Python3::InstanceConverter)' (cause: no object at index 499)

===SORRY!===
Probable version skew in pre-compiled 
'site#sources/95D204DDA68A3E05E891AA531EBED9270C46B3F7 
(Inline::Python3::InstanceConverter)' (cause: no object at index 499)

当我在shell中执行perl6 -e "use Inline::Python3; say 'hi'",它报道:

===SORRY!===
Probable version skew in pre-compiled 
'site#sources/95D204DDA68A3E05E891AA531EBED9270C46B3F7 
(Inline::Python3::InstanceConverter)' (cause: no object at index 499)

内联:: Python3包是由自己开发的perl6包。它运行良好,在我的电脑。

perl6 --version说:

This is Rakudo version 2018.03 built on MoarVM version 2018.03
implementing Perl 6.c.

我不知道什么是“版本歪斜”的。我该如何修正这个错误?

perl6
1个回答
6
投票

继@ jjmerelo的建议,使用rakudo-pkg提供的最新编译器解决了这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.