yum Erro: nenhum módulo chamado site

2

Eu instalei o Greenplum no Centos 7 e agora não posso usar o yum.

Eu preciso instalar o samba-client, mas quando eu executo:

yum install samba-client

Eu vejo este erro: ImportError: No module named site

which python
/usr/local/greenplum-db/ext/python/bin/python
python -V
Python 2.6.2
cat $PYTHONHOME
cat: /usr/local/greenplum-db/./ext/python: Is a directory

Nenhuma ideia de como isso aconteceu. Percebo que meus outros servidores não têm esse problema e exibem python 2.7.5

    
por Peter 11.07.2016 / 11:50

1 resposta

6

PYTHONHOME

Change the location of the standard Python libraries. By default, the libraries are searched in prefix/lib/pythonversion and exec_prefix/lib/pythonversion, where prefix and exec_prefix are installation-dependent directories, both defaulting to /usr/local.

When PYTHONHOME is set to a single directory, its value replaces both prefix and exec_prefix. To specify different values for these, set PYTHONHOME to prefix:exec_prefix.

Em um shell, você pode usar esses comandos para limpá-los:

unset PYTHONPATH

## to use the system default ##
unset PYTHONHOME   
    
por 11.07.2016 / 12:08