So – perl6 is finally out
So, perl6 is out – before x-mas 🙂 I decided to give it a spin. First, upgrading my current installed perlbrew of 5.22.0 to 5.22.1, and adding a option I previously didn’t set. Seems to be a requirement for -fPIC and installing Inline::Perl5 that I think might come in handy.
$ perlbrew install perl-5.22.1 -Duseshrplib
– Set perl-5.22-1 active and install cpanm
$ perlbrew use perl-5.22.1 $ perlbrew install-cpanm $ perlbrew use perl-5.22.0
– Now, get all installed modules from 5.22.0 to 5.22.1
$ perlbrew list-modules | perlbrew exec --with 5.22.1 cpanm $ perlbrew switch 5.22.1
From the Christmas release I decided on installing using radukobrew.
$ git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew $ echo 'export PATH=~/.rakudobrew/bin:$PATH' >> ~/.bashrc $ source ~/.bashrc
Well, I ended up adding this to my .bashrc
if [ -e ~/.rakudobrew/bin ]; then export PATH=:$PATH:~/.rakudobrew/bin fi if [ -e ~/.rakudobrew/moar-nom/install/share/perl6/site/bin ]; then export PATH=$PATH:~/.rakudobrew/moar-nom/install/share/perl6/site/bin fi
$ rakudobrew build moar && rakudobrew build-panda $ panda install Task::Star $ panda install Inline::Perl5