http://www.perlmonks.org?node_id=1004428


in reply to Perlbrew issues. Suggest a way out.

perl514,

It is very easy to install multiple copies of Perl on *nix boxes. I usually have 3 to 5 versions depending on how old the computer is. Download from CPAN the version you want. I do the following system commands after verifying the checksum:

gzip -d perl-5.14.2.tar.gz tar -xf perl-5.14.2.tar # This creates a new directory + perl-5.14.2 cd perl-5.14.2 ./Configure -des -Dprefix=/usr/opt/perl_5_14_2 # directory should b +e unique and already exist make make test make install # This will install to /usr/op +t/perl_5_14_2 ln -s /usr/opt/perl_5_14_2/bin/perl /usr/local/bin/myperl

This should generate a new and totally different Perl from the system Perl. To test that everything works, just type

myperl -V # you can call it anything, but I recommend having perl + in the name

Some things to keep in mind.

You'll never again be limited by the Perl that ships with the *nix!

I did this from memory, so if you find something that works differently, I'll check it, and update the documentation or at least mark it as system dependent.

Good Luck!

"Well done is better than well said." - Benjamin Franklin