Python 2.5 をインストール

Python 2.5 をインストール

2007/01/02 4:38am

冬休み。お勉強の一環として Python を考えている。

現時点の最新版は 2.5、一方、Mac OS X Tiger に標準インストールされているのは 2.3.2。 というわけでダウンロードページから Python 2.5 のソースコードをダウンロードして、インストール。

% curl -O http://www.python.org/ftp/python/2.5/Python-2.5.tgz
% tar xvzf Python-2.5.tgz
% cd Python-2.5
% ./configure
% make
% sudo make install

特に問題なくインストールできた。

% python -V
Python 2.5

お約束通り、Hello, World で幕開け。

% python
Python 2.5 (r25:51908, Jan  1 2007, 17:41:26)
[GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print "Hello, World!"
Hello, World!