在 macOS 中安装 pyqt 时出现问题
你好,
我正在尝试在 macos 中安装 pyqt。 我在网上读到我需要: sip + pyqt + qt (显然) 我安装 qt & 没有问题 啜。 当我尝试安装 pyqt 时,我可以在终端看到以下错误:
python configure.py
Error: A Qt installation could not be found. Use the -q argument or the QTDIR environment variable to explicitly specify the correct directory.
有人知道我应该在终端写什么吗?
谢谢,
纳乔
HI,
I´m trying to install pyqt in macos.
I read on Internet that i need: sip + pyqt + qt (obviously)
I had no problem installing qt & sip.
When I try to install pyqt I can see the following error at the terminal:
python configure.py
Error: A Qt installation could not be found. Use the -q argument or the QTDIR environment variable to explicitly specify the correct directory.
Anybody knows what I should write at the terminal?
Thanks,
NAcho
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
python configure.py -q /usr/bin/qmake-4.x x 是您拥有的任何 qmake 版本。
当然,
python configure.py -q /usr/bin/qmake-4.x
x being whatever qmake version you have, of course.
您想为 Qt 3 安装 PyQt 还是为 Qt 4 安装 PyQt4?
该错误消息看起来类似于 Qt 3 的 PyQt 中的错误消息,在这种情况下 -q 选项的参数是包含安装 Qt 可执行文件、库和头文件的 bin、lib 和 include 目录的目录。
Do you want to install PyQt for Qt 3 or PyQt4 for Qt 4?
The error message looks like the one from PyQt for Qt 3, in which case the argument to the -q option is the directory containing the bin, lib and include directories where the Qt executables, libraries and header files are installed.