Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have Debian machine for my Django production server. I need to install second python (2.7.1) to use with virtualenv. But it always write I don't have some modules, then I have to search manually, apt-install them and rebuild. Is there either a way to resolve the dependencies for building, or pre-compiled .deb with python 2.7.1 for Debian Squeeze? Sorry if this is much of a noobie question, I googled, honestly.

share|improve this question

3 Answers

up vote 15 down vote accepted

Get the Python 2.7.1 sources and compile it manually:

configure --prefix=/path/to/python-2.7
make; make install
share|improve this answer
I'd also suggest installing various libraries before compiling: stackoverflow.com/a/4047583/211197 This will be helpful if it's necessary to install setuptools/pip later. – maksimov Sep 24 '12 at 10:54
Why not make altinstall? – timss Feb 8 at 14:06

Python 2.7 is available for wheezy (testing), so you should be able to install it by adding the testing repository and doing some APT pinning.

1) add the repository in /etc/apt/sources.list

deb http://ftp.us.debian.org/debian testing main contrib non-free

2) do the actual pinning in /etc/apt/preferences

Package: *
Pin: release n=testing
Pin-Priority: 100

A Pin-Priority of under 500 basically means that no packages from testing are installed automatically, so you won't have problems with other packages.

3) install python2.7 from testing:

aptitude -t testing install python2.7

(or apt-get if you don't have aptitude)

share|improve this answer
10  
This should not be done for multiple reasons. Packages from different Debian releases should not be mixed. The testing/unstable branches are working on changing the default python version to 2.7 for the Wheezy release. Squeeze is ment to use 2.6 so if you replace it with 2.7 you risk breaking everything on the system that uses python. – Arrowmaster May 6 '11 at 9:12
@Arrowmaster: I'd rather say that this is unsupported than that this should not be done. If it breaks, you get to keep both pieces. – dancek May 6 '11 at 10:45
2  
Right but it's easier to just tell people that wouldn't know where to begin to fix it that it just shouldn't be done. – Arrowmaster May 6 '11 at 19:22
can you elaborate on how this would be dangerous if you are not using update-alternatives to change the default python to 2.7? As far as I understand, python2.7 would simply exist as an additional package when pinning; it wouldn't change the default python. Am I missing something here? – jorelli Oct 3 '11 at 18:33
9  
I installed python 2.7 on my Debian Squeeze according to these instructions plus configuration using update-alternatives, and as Arrowmaster warned, it did break! The next apt-get update errored out with python errors; something like python is not debian_default. I switched back to python 2.6 but still had the same error?!? I eventually had to uninstall 2.7 and hack the /usr/bin/python link to get it to work again. – Nostradamnit Nov 2 '11 at 8:04
show 3 more comments

Installing a chroot-environment with debootstrap could be also a fast and secure solution. It uses about 300mb

debootstrap wheezy /opt/debian7
chroot /opt/debian7
apt-get install python2.7
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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