I think I've figured out how to get python2.5 "fully functional. Using the update-alternatives "hint" from an earlier response, I did a little research, and learned that "update-alternatives" for python MUST be configured (which it apparently is not, out of the box).
Like others above mentioned, I too experienced "update-alternatives --config python" returned "no alternatives". I then did the following (after su root; sudo before each command may work too):
Code:
update-alternatives --install /usr/lib/python python /usr/lib/python2.4 10
update-alternatives --install /usr/lib/python python /usr/lib/python2.5 1
I chose priorities 10 and 1 rather arbitrarily, thinking that Python 2.4 should be the higher/preferred version.
I now get the list of alternatives when I issue the
Code:
update-alternatives --config python, or
update-alternatives --set python /usr/lib/python2.5
I make my preferred selection. invoke python, and get the selected version. This about the only tests I've done so far, so I don't yet know if there are any gotchas yet!!
Any comments?