web-dev-qa-db-ja.com

Qt centos 7のインストールにご協力ください

2 pythonバージョン、python3.6が開発用にvirtualenvにインストールされています。python3.6でのみ使用するPyQtおよびQtパッケージをインストールしようとしています、

Sudo pip3.6 install pyqt5を使用してPyQt5をインストールしました。以下の指示によると、QtはPyQt5に含まれ、/ usr/lib64/python3.6/site-packages/PyQt5のpyqt5パッケージにもQtフォルダーが含まれています、しかし私がqmake --versionを置いてqtバージョンをチェックすると、次のエラーが発生します:

qmake --version

bash: qmake: command not found...

Similar command is: 'make'

使用する場合:

make --version

次のようになります。

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.

を使用して

rpm -ql qt

以下を与えます:

package qt is not installed

sudo pip3.6 install qt5をインストールして再インストールすると、次のエラーが表示されます "` ``

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

Yum install 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 * update:mirror.sov.uk.goscomb.netいいえパッケージqt5が利用可能です。エラー:何もする必要はありません

誰かが助けてください。ありがとう

5
user3103193

Qt5パッケージを検索:# yum search qt5 ...そしてqmakeを検索します:yum provides */bin/qmake*

CentOS 7システムqt5をインストールします。

# yum install qt5-qtbase-devel

.../usr/bin/qmake-qt5を提供します

11
Knud Larsen