Mac OSX :Перейти на Python 2.7.3

Я установил Mac OSX Python 2.7.3 и попытался перейти на новую версию:

$ python2.7 -V
Python 2.7.3         # It was installed
$ python -V
Python 2.6.1         # Default is 2.6
$ export VERSIONER_PYTHON_VERSION=2.5
$ python -V
Python 2.5.4         # I can switch to 2.5
$ export VERSIONER_PYTHON_VERSION=2.6
$ python -V
Python 2.6.1         # And 2.6

Но:

$ export VERSIONER_PYTHON_VERSION=2.7
$ python -V
python: VERSIONER_PYTHON_VERSION environment variable error (ignored)
Python 2.6.1

Не могу переключиться на 2.7! Это почему?

6
задан Adam Matan 4 May 2012 в 08:52
поделиться