-
Notifications
You must be signed in to change notification settings - Fork 4
Installation and Setup
Sam Batschelet (hexfusion) edited this page Dec 13, 2013
·
26 revisions
Introduction: In this document we will show you how to install a standalone version of Perlbrew with Carton Perl module management support for the new user ic6.
-
As root user
$ adduser ic6
$ cd ~ic6 && su ic6
-
Using curl install perlbrew quickly copy the following line into your terminal shell.
$ \curl -L http://install.perlbrew.pl | bash
-
Initialize perlbrew
$ echo "source ~/perl5/perlbrew/etc/bashrc" >> ~/.bash_profile
-
Update shell
$ source ~/.bash_profile
-
List available Perl versions
$ perlbrew available
perl-5.18.1
perl-5.16.3
perl-5.14.4
... -
Install Perl
$ perlbrew install perl-5.16.3
-
Change Perl for ic6 user to perl-5.16.3
$ perlbrew switch perl-5.16.3
-
Verify ENV
$ perl -V
Read more on perlbrew and other install methods
Perlbrew offical site