Mountain LionにMacPortsとPythonを入れた

Python

途中までは以下でよし
MacPortsを使ってPythonをインストールした - olitsの勉強ノート

ただし、python_selectが使えなくなっている。

こちらを参照
http://d.hatena.ne.jp/inouetakuya/20110728/1311852834

選べるバージョンを確認
$ port select --list python
Available versions for python:
	none (active)
	python25-apple
	python26
	python26-apple
	python27-apple
選ぶ
$ sudo port select --set python python26
Selecting 'python26' for 'python' succeeded. 'python26' is now active.
選んだバージョンを確認
$ python -V
Python 2.6.8


こんな感じ