我正在尝试从源文件安装 PyQt5 for python3 。
我正确安装了 SIP。
然后,当我想准备安装 PyQt 的 make 文件时,出现以下错误:
#python3 configure.py
Error: /usr/bin/qmake failed to create a makefile. Make sure you have a working
Qt qmake on your PATH or use the -q argument to explicitly specify a working Qt
qmake.
答案1
也许你还没有qmake
安装。在 Fedora 上,它位于 Qt-devel
包中,但在 debian / ubuntu 上,它可能位于它自己的包中;两个最有可能的候选人是:
> apt-cache search qmake
qt3-dev-tools - Qt3 development tools
qt4-qmake - Qt 4 qmake Makefile generator tool
您应该能够输入which qmake
并获得回复,例如/usr/bin/qmake
。