web-dev-qa-db-ja.com

インストールPython 2.5 on RedHat / Centos

現在Pythonバージョンは2.4です...

yum upgrade python

与える

Could not find update match for python

ソースからインストールする必要がありますか?

8
EoghanM

はい、ソースからインストールする必要があります。以下を使用できます。

wget http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tgz
tar fxz Python-2.5.2.tgz
cd Python-2.5.2
./configure
make
make install

これはPython 2.5をコマンドpython2.5としてインストールします。yumおよびCentOSの他の部分には古いPython 2.4が必要であるため、2つのバージョンがあります。 Pythonインストールされています。

/usr/bin/python - 2.4.3
/usr/bin/python2.5 - 2.5
9
user9206
./configure 
make 
make install

コマンドは次のようになります(README for 2.7によると)

./configure 
make
make altinstall

README の「複数バージョンのインストール」セクションを参照してください。

10
timmy

./configureでこのエラーが発生しました

configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

だから、私はこれらのパッケージをインストールしました

yum install gcc make

その後、それは動作します;)

1
coto