Por favor ajude a instalar o Qt centos 7

3

Eu tenho 2 versões em python, python3.6 está instalado em virtualenv para uso em desenvolvimento, estou tentando instalar pacotes PyQt e Qt para uso somente com python3.6,

Eu instalei o PyQt5 usando o sudo pip3.6 install pyqt5, A instrução que eu estava seguindo diz que o Qt está incluso no PyQt5, Também no pacote pyqt5 em /usr/lib64/python3.6/site-packages/PyQt5 Eu vejo o Qt pasta dentro, mas quando eu coloco qmake --version para verificar a versão qt me dá o seguinte erro:

qmake --version

bash: qmake: command not found...

Similar command is: 'make'

Ao usar:

make --version

Dá o seguinte:

GNU Make 3.82

Built for x86_64-redhat-linux-gnu

Copyright (C) 2010 Free Software Foundation, Inc.

License GPLv3+: GNU GPL version 3 or later

This is free software: you are free to change and redistribute it.

There is NO WARRANTY, to the extent permitted by law.

usando

rpm -ql qt

fornece o seguinte:

package qt is not installed

quando eu coloco o sudo pip3.6 instala o qt5 para reinstalá-lo, dá-me o seguinte erro "'' '

Could not find a version that satisfies the requirement qt5 (from versions: ) No matching distribution found for qt5"

Quando uso o yum, instale o qt5:

Loaded plugins: fastestmirror, langpacks base
| 3.6 kB 00:00 epel/x86_64/metalink
| 24 kB 00:00 epel
| 4.3 kB 00:00 extras
| 3.4 kB 00:00 ius
| 2.3 kB 00:00 updates
| 3.4 kB 00:00 (1/3): ius/x86_64/primary_db
| 206 kB 00:00 (2/3): epel/x86_64/updateinfo
| 806 kB 00:01 (3/3): epel/x86_64/primary_db
| 4.8 MB 00:08 Loading mirror speeds from cached hostfile * base: 

mirror.sov.uk.goscomb.net * epel: ftp.heanet.ie * extras: mirror.ox.ac.uk * ius: lon.mirror.rackspace.com * updates: mirror.sov.uk.goscomb.net No package qt5 available. Error: Nothing to do

Alguém por favor pode ajudar? Obrigado

    
por user3103193 05.08.2017 / 11:29

1 resposta

8

Encontre pacotes qt5: # yum search qt5 ... e procure por qmake: yum provides */bin/qmake*

Instale o sistema do CentOS 7 qt5:

# yum install qt5-qtbase-devel

... Fornece / usr / bin / qmake-qt5

    
por 09.08.2017 / 18:31