I am running CentOS 5.4 which only has version 5.8 of perl available by default, and I have a program which requires perl 5.10, so I compiled perl 5.10 on CentOS. How do I specify which perl I want to run the program with because the perl command uses 5.8 by default.
|
|
I add my voice to recommending against messing with the system perl at all. No one mentioned App::perlbrew yet. It allows you to have several versions of Perl and switch between them easily. This can be done manually of course but it's much easier to have this tool to do it for you; from the Pod–
|
|||||
|
|
The first line of the program file should reference the perl binary you wish to use: e.g.
You may also want to change your PATH variable so that the directory your perl 5.10 binary is in is listed prior to the 5.8 binary directory. e.g.
|
|||
|
|
|
There is a tool called alternatives that was designed to deal effectively with exactly this kind of problem. It basically gives you an easy way of switching between different version of applications by manipulating symbolic links in e.g. your bin directories. Say "man alternatives" in a terminal (or yum install alternatives, if you don't have it installed). |
|||
|
|
|
set your PATH environment variable to point to your new perl executable. For instance
|
|||
|
|
|
I like to make symbolic links to my different perl executables in
and then just invoke:
|
|||
|
|
|
BTW, The perlbrew package is available for installation from the EPEL repository for CentOS 5.x. I tried to install just this rpm initially but it has a number of dependencies so I opted to add the EPEL repository to my list of yum repos on my box. |
|||
|
|