View Single Post
Old 11-30-2012, 11:14 AM   #13
octa
Human being with feelings
 
octa's Avatar
 
Join Date: Nov 2012
Location: Switzerland
Posts: 3
Default

Apple has provided two simple ways to change the default python on OS X 10.6, 10.7, 10.8
It's all detailed in the Apple man page for python(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
octa is offline   Reply With Quote