[perl] perlbrew 使用初步

注意要用 perl example.pl运行,而不是直接./example.pl,否则还是用系统的perl环境解释

或改成 #!/usr/bin/env perl


$perlbrew init


perlbrew root (~/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!

$source ~/perl5/perlbrew/etc/bashrc

$perlbrew list
* perl-5.24.0

$perlbrew switch perl-5.24.0

$which perl
~/perl5/perlbrew/perls/perl-5.24.0/bin/perl

猜你喜欢

转载自blog.csdn.net/lieberstraum/article/details/51849027