我很想学习Raku(Perl 6)及其语法。
我的Ubuntu计算机上已经安装了Perl 5。
vinod@ubuntu-s-1vcpu-1gb-nyc1-01:~$ perl -v
This is perl 5, version 26, subversion 1 (v5.26.1) built for x86_64-linux-gnu-thread-multi
(with 67 registered patches, see perl -V for more detail)
Copyright 1987-2017, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.
我想在同一Ubuntu系统中安装Raku。我有几个问题:
- 如何安装Raku?
- 如果我安装了Raku,Perl 5.26是否会被清除/更新?我希望在系统中使用Perl 5.26,因为几个脚本正在Perl 5中运行。
- 一台服务器上可以有2个版本的Perl吗?
- 一旦安装了Raku,如何在Ubuntu服务器上运行Raku / Perl 5代码?就像我
use Perl 5.26;
一开始应该提到的吗?默认情况下,它将使用哪个版本的Perl? - 如何运行Raku代码?
2
关于“ 我可以在单个服务器上有2个版本的Perl吗? ”,是的,但是Perl 6 / Raku不是Perl的版本;这是一种全新的语言。
—
ikegami,
@ikegami:谢谢。我应该在同一服务器上有2个Perl版本,即5.24和5.26吗?
—
vinodk89 '19
可以做到的。我有十几个版本。您可以将Perl安装到任何目录中。您可以
—
ikegami
perlbrew
用来安装它