I want to install Python 2.6, but as it's still experimental for Debian Linux, I'm wondering what my best course of action is. Is the right idea to install it into /usr/local
for my system and then update the python sym link in /usr/bin
to point to that version? Are there other considerations or ways to do it I should be thinking about?
Asked
Active
Viewed 1,229 times
0

Dennis Williamson
- 62,149
- 16
- 116
- 151

Bialecki
- 157
- 1
- 9
-
I just compiled it myself and installed in `/usr/local`. Both 2.6 and 3.1. – o0'. May 11 '10 at 08:33
-
Don't touch `/usr/bin` at all, you don't need to do that. – o0'. May 11 '10 at 08:34
2 Answers
1
Using the altinstall
make target instead of the install
target will create a python2.6
executable, without touching the existing python
link or executable.

Ignacio Vazquez-Abrams
- 45,939
- 6
- 79
- 84
0
You can install the python on a different location and when using the binary in any other programs, use the full path to the binary where you have installed.