perl versions in parallel

Hi,
Is it possible to have different perl versions on a machine?
I have 7.3-RELEASE with perl 5.10.1. I would like to have 5.8.8 as well. What is the best way to install that version on the machine?
Thanks!
 
why do you want that?

When Installing new other version you could try to set PREFIX variable
Code:
make install PREFIX="/home/me/"
this should work
 
killasmurf86 said:
why do you want that?

When Installing new other version you could try to set PREFIX variable
Code:
make install PREFIX="/home/me/"
this should work

I must use a script that works only with the old perl.
Thanks for the advise my idea was something similar as well.
 
Back
Top