perl的安装和版本切换工具-perlbrew
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了perl的安装和版本切换工具-perlbrew相关的知识,希望对你有一定的参考价值。
setenv PERL /opt/perl5 --设置新perl的起始安装路径
curl -kL http://install.perlbrew.pl | bash
source /opt/perl5/perlbrew/etc/bashrc
perlbrew init
perlbrew root (/opt/perl5/perlbrew) is initialized.
Append the following piece of code to the end of your ~/.bash_profile and start a
new shell, perlbrew should be up and fully functional from there:
source ~/perl5/perlbrew/etc/bashrc
Simply run `perlbrew` for usage details.
Happy brewing!
perlbrew install perl-5.16.0
perlbrew switch perl-5.16.0
至此,当前perl已经切换到新安装的perl-5.16.0
如果想再切换回旧版的,
source /opt/perl5/perlbrew/etc/bashrc
perlbrew switch-off
perl -v 查看当前版本已经切回。
完毕!
以上是关于perl的安装和版本切换工具-perlbrew的主要内容,如果未能解决你的问题,请参考以下文章