I'm running Ubuntu to compile a set of code which requires python 2.4.

How can I setup a terminal launcher so that when I open that launcher all python related commands will use python 2.4 instead of the python 2.6 that is defaulted in Ubuntu?

link|improve this question

50% accept rate
feedback

4 Answers

up vote 4 down vote accepted

Set a bash alias in that shell session: alias python=python2.4 (assuming python2.4 is in your $PATH of course). This way you won't have to remember to explicitly type the 2.4 a zillion times in that terminal -- which is what bash aliases are for!-)

link|improve this answer
This is exactly what I was looking for thanks! – dirtytofu Mar 6 '10 at 16:46
feedback

Invoke the interpreter via python2.4 instead of using the default.

link|improve this answer
feedback

For a permenant system wide change put a symbolic link to the version you want in place of /usr/bin/python. ie

rm /usr/bin/python; ln -s /usr/bin/python2.4 /usr/bin/python

gentoo has a program 'eselect' which is for just this kind of thing (listing versions of programs and setting the default), Ubuntu may have something analogous; you'd have to check their docs.

link|improve this answer
feedback

Watch out for using the alias when wanting to use the python you want. If the python script uses $0 to figure out how it was called, then uses that answer to execute another python script, the other script will be called with whatever version that matches the link name, not the version the link points to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.