CentOS 6 に Python 2.7.3 をインストールできない

CentOS 6 に Python 2.7.3 をインストールできない

仮想マシンにCentOS 6(最小インストールかネットインストールか覚えていない)をインストールしています。プラン4.2.4テスト目的でインストールしました。必要な依存関係はすべてインストールしました。少なくともそうだと思います。

Plone 統合インストーラを実行します ( --static-lxmlPlone には CentOS に存在しない libxml2 バージョンが必要なので、このオプションを使用します)

./install.sh --static-lxml スタンドアロン

次のエラーが発生します:

Stand-Alone Zope Instance selected

Detailed installation log being written to /root/plone/Plone-4.2.4-UnifiedInstaller/install.log

Root install method chosen. Will install for use by system user plone

Installing Plone 4.2.4 at /usr/local/Plone

User 'plone' already exists. No need to create it.
Skipping libjpeg build
Skipping readline build
Installing Python-2.7.3. This takes a while...
Install of Python-2.7.3 has failed.

Installation has failed.
See the detailed installation log at /root/plone/Plone-4.2.4-UnifiedInstaller/install.log
to determine the cause.

Ploneのインストールログはこちら

インストールしましたPythonbrewこれを使用して Python 2.73 をインストールしようとしました。Pythonbrew は正常にインストールできましたが、実行するとpythonbrew install 2.7.3次のエラーが発生します。

[test@plonemachine root]$ pythonbrew install 2.7.3
Use the previously fetched /home/test/.pythonbrew/dists/Python-2.7.3.tgz
Extracting Python-2.7.3.tgz into /home/test/.pythonbrew/build/Python-2.7.3

This could take a while. You can run the following command on another shell to track the status:
  tail -f "/home/test/.pythonbrew/log/build.log"

Patching Python-2.7.3
Installing Python-2.7.3 into /home/test/.pythonbrew/pythons/Python-2.7.3
ERROR: Failed to install Python-2.7.3. See /home/test/.pythonbrew/log/build.log to see why.

Pythonbrew のビルド ログは次のとおりです。これは Plone のインストール ログとほぼ同じなので、問題は別の場所にあると考えられます。

答え1

それ見た目configure スクリプトが正しく終了し、Makefile が作成されているようです。おそらく、いくつかの基本的な開発ツールが不足しているのではないかと思いますautoconf。root として次のコマンドを実行してインストールしてみてください (ソース):

 yum groupinstall 'Development Tools'

関連情報