I just upgraded to lion and with it came Python 2.7. I need to use 2.6 as my default python as the project I primarily work on uses 2.6.

link|improve this question

80% accept rate
1  
have u think about using virtualenv?! – Arthur Neves Aug 9 '11 at 15:19
Maybe something here will work? superuser.com/questions/35256/… – dcpomero Aug 9 '11 at 15:20
feedback

3 Answers

up vote 1 down vote accepted

You have a few options:

  1. Change /usr/bin/python to a link to /usr/bin/python2.6
  2. Put /System/Library/Frameworks/Python.framework/Versions/2.6/bin in your path before /usr/bin
  3. Explicitly tell your scripts to use /usr/bin/python2.6
link|improve this answer
Do not use option 1 for the reasons cited in the other answer. It's not a symlink on OS X. – Ned Deily Aug 9 '11 at 17:24
2 and 3 will work and are non-destructive but, as noted in another answer, Apple provides a much easier way to do this. – Ned Deily Aug 9 '11 at 17:33
feedback

Apple has provided two very simple ways to change the default python on OS X 10.6 Snow Leopard and 10.7 Lion. It's all detailed in the Apple man page for python(1):

$ man python
$ which python
/usr/bin/python
$ python -V
Python 2.7.1
#
# temporarily change version
#
$ export VERSIONER_PYTHON_VERSION=2.6
$ python -V
Python 2.6.6
$ unset VERSIONER_PYTHON_VERSION
$ python -V
Python 2.7.1
#
# persistently change version
#
$ defaults write com.apple.versioner.python Version 2.6
$ python -V
Python 2.6.6
link|improve this answer
Excellent Answer! – John Percival Hackworth Aug 10 '11 at 0:50
4  
This is the correct answer, OP should change his selected solution. – Pedro Aug 17 '11 at 19:31
Agree with posts above. thanks! – jbenet Aug 31 '11 at 9:52
Note you need to use the defaults write com.apple.versioner.python Version 2.6 if you are installing and require Python 2.6. Otherwise the python package will be put into 2.7 site packages. – timbo Sep 22 '11 at 6:02
@Timbo: I don't understand your comment. – Ned Deily Sep 22 '11 at 7:21
feedback

After running the following:

defaults write com.apple.versioner.python Version 2.6

To make sure the packages you install with 'sudo' are installed for the correct Python version, also set the versioner option as a superuser:

sudo su
# Enter password
defaults write com.apple.versioner.python Version 2.6
exit
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.