A instalação do GNUHealth falha

1

Hoje tentando instalar o GNUHealth no meu Fedora 27 (32 bits). depois de criar usuário tentei verificar o PostgreSQL. aqui está um arquivo pg_hba.conf em / var / lib / pgsql / data. Isso mostra as linhas a seguir

Neste arquivo não encontrei nenhuma linha contendo local all all trust

gpg --recv-key 0xC015E1AE00989199 retorna este

gpg: directory '/root/.gnupg' created
gpg: new configuration file '/root/.gnupg/gpg.conf' created
gpg: WARNING: options in '/root/.gnupg/gpg.conf' are not yet active during this run
gpg: keyring '/root/.gnupg/secring.gpg' created
gpg: keyring '/root/.gnupg/pubring.gpg' created
gpg: no keyserver known (use option --keyserver)
gpg: keyserver receive failed: bad URI

gpg --with-fingerprint --list-keys 0xC015E1AE00989199

gpg: /root/.gnupg/trustdb.gpg: trustdb created
gpg: error reading key: public key not found

Após o download das assinaturas desanexadas, tentei verificar o pacote por gpg --verify gnuhealth-3.2.9.tar.gz.sig gnuhealth-latest.tar.gz isso também mostra

    gpg: error reading key: public key not found

Então eu escrevi isso da instalação ./gnuhealth-setup install  isso retorna 2018-05-20 07:08:03 [INFO] Starting GNU Health 3.2.9 installation... 2018-05-20 07:08:03 [INFO] Checking requirements -> Looking for wget... wget is /usr/bin/wget -> Looking for 2to3... 2018-05-20 07:08:03 [ERROR] 2to3 command not found. Please install it or check your PATH variable 2018-05-20 07:08:03 [INFO] Bailing out ! 2018-05-20 07:08:03 [INFO] Cleaning up temp directories at 2018-05-20 07:08:03 [INFO] removing base dir at Então eu falhei na instalação. o que deve ser feito nisso?

    
por Prabhjot Singh 20.05.2018 / 09:55

1 resposta

0

Isso ocorre porque 2to3 não é instalado por padrão e pode ser instalado usando

yum install python-tools

Agora, a execução de ./gnuhealth-setup install deve permitir que ele seja concluído

    
por 22.07.2018 / 15:05