Não é possível instalar o Python 2.7.3 no CentOS 6

1

Eu tenho um CentOS 6 (instalação mínima ou netinstall, não me lembro qual) em uma máquina virtual. Estou tentando instalar o Plone 4.2.4 para testes. Eu instalei todas as dependências necessárias ou, pelo menos, acho que sim.

Eu executo o Plone Unified Installer (eu uso a opção --static-lxml porque o Plone requer uma versão libxml2 não presente no CentOS)

./install.sh --static-lxml standalone

Eu recebo o seguinte erro:

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.

Aqui está o log de instalação do Plone .

Eu instalei Pythonbrew para tentar instalar o Python 2.73 usando-o. Eu posso instalar o Pythonbrew com sucesso, mas quando eu executo pythonbrew install 2.7.3 eu recebo o seguinte erro:

[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.

Aqui está o log de compilação do Pythonbrew. É quase idêntico ao log de instalação do Plone (!), levando-me a acreditar que o problema está em outro lugar .

    
por That Brazilian Guy 26.02.2013 / 18:53

1 resposta

1

parece como o script de configuração saiu corretamente e os Makefiles foram criados. Meu palpite é que você está perdendo algumas das ferramentas básicas de desenvolvimento, talvez autoconf . Tente instalá-los com este comando como root ( source ):

 yum groupinstall 'Development Tools'
    
por 26.02.2013 / 19:14