Raspbian随附Perl吗?


11

我前段时间买了Pi,我想知道Raspbian是否与Perl一起提供?如果是这样,什么版本?

Answers:



6

如果要升级(在任何系统上)使用的perl版本,通常最好远离系统perl并自行构建。

根据您的要求,您可能希望在主目录中拥有自己的副本,或者在/ opt / site-perl /之类的位置中拥有“供我使用的应用程序”副本(我以该路径为例)。

最简单的方法是使用perlbrew:https//metacpan.org/release/App-perlbrew

该文档非常好,但基本上是:

# to install somewhere other than ~/perl5
export PERLBREW_ROOT=/opt/perl5
# make perlbrew install itself under the given PERLBREW_ROOT
curl -kL http://install.perlbrew.pl | bash

之后,我将安装cpanminus:

perlbrew install-cpanm

在这里,您可以使用以下任何一种简单的方法安装所需的任何CPAN模块:

cpanm Moose Catalyst DBIx::Class

瞧!您是最新的,并且系统权限未受影响。


3

pi确实带有perl 5.14.2。但是,如果您想自己进行编码,则值得查看perlbrew(可以从存储库中安装),这使您可以安装最新版本的perl(可能是5.16,可能会在5.18发行)并降低了风险您通过安装cpan中的模块来破坏系统维护脚本。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.