インストール。GAEがpython2.5だそうなので2.5を入れてみた。

% sudo port install python25
(...)
To fully complete your installation and make python 2.5 the default, please run
        sudo port install python_select
        sudo python_select python25

python_selectを入れて実行せよと出た。debianのupdate-alternativeみたいなもんだろう。

% sudo port install python_select
% sudo python_select -s
python26-apple
% sudo python_select python25
% sudo python_select -s
python25

macのデフォルトは2.6なんですね。これが普通なのかわからないけど2.5にしておきました。

% vi hello.py
print "Hello, Python!"
% python hello.py 
Hello, Python!

うん。

Comments


Option