qt5 - 安装 PyQt 5.4.2 错误 : sip api reference

标签 qt5 ubuntu-14.04 pyqt5 python-3.4 python-sip

我需要帮助来找出出现此错误的原因:

[everything fine until here...]
In file included from sipQtCoreQTimeZoneOffsetData.cpp:24:0:
/home/hugo/Desktop/my_pyqt_examples/PyQt-gpl-5.4.2/QtCore/sipQtCoreQTimeZoneOffsetData.cpp: In function ‘PyObject* varget_QTimeZone_OffsetData_abbreviation(void*, PyObject*, PyObject*)’:
/home/hugo/Desktop/my_pyqt_examples/PyQt-gpl-5.4.2/QtCore/sipAPIQtCore.h:9581:52: error: ‘const sipAPIDef’ has no member named ‘api_get_reference’
 #define sipGetReference             sipAPI_QtCore->api_get_reference
                                                    ^
/home/hugo/Desktop/my_pyqt_examples/PyQt-gpl-5.4.2/QtCore/sipQtCoreQTimeZoneOffsetData.cpp:128:13: note: in expansion of macro ‘sipGetReference’
     sipPy = sipGetReference(sipPySelf, -13);
             ^
/home/hugo/Desktop/my_pyqt_examples/PyQt-gpl-5.4.2/QtCore/sipQtCoreQTimeZoneOffsetData.cpp: In function ‘PyObject* varget_QTimeZone_OffsetData_atUtc(void*, PyObject*, PyObject*)’:
/home/hugo/Desktop/my_pyqt_examples/PyQt-gpl-5.4.2/QtCore/sipAPIQtCore.h:9581:52: error: ‘const sipAPIDef’ has no member named ‘api_get_reference’
 #define sipGetReference             sipAPI_QtCore->api_get_reference
                                                    ^
/home/hugo/Desktop/my_pyqt_examples/PyQt-gpl-5.4.2/QtCore/sipQtCoreQTimeZoneOffsetData.cpp:170:13: note: in expansion of macro ‘sipGetReference’
     sipPy = sipGetReference(sipPySelf, -14);
             ^
make[1]: *** [sipQtCoreQTimeZoneOffsetData.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: Leaving directory `/home/hugo/Desktop/my_pyqt_examples/PyQt-gpl-5.4.2/QtCore'
make: *** [sub-QtCore-make_first-ordered] Error 2

我正在 Ubuntu 14.04 上的 virtualenv 中安装 PyQt 5.4。我已经安装了 SIP(​​版本 4.16.8,which sip 返回 virtualenv 中的那个)并且在配置运行期间似乎一切正常:

python configure.py --qmake /home/hugo/Qt/5.4/gcc_64/bin/qmake

输出(除其他外):

Qt v5.4.2 (Open Source) is being used.
The qmake executable is /home/hugo/Qt/5.4/gcc_64/bin/qmake.
Qt is built as a shared library.
SIP 4.16.8 is being used.
The sip executable is /home/hugo/Desktop/my_pyqt_examples/venv/bin/sip.
These PyQt5 modules will be built: QtCore, QtGui, QtHelp, QtMultimedia,
QtMultimediaWidgets, QtNetwork, QtOpenGL, QtPrintSupport, QtQml, QtQuick,
QtSql, QtSvg, QtTest, QtWebKit, QtWebKitWidgets, QtWidgets, QtXml,
QtXmlPatterns, QtDesigner, QtDBus, _QOpenGLFunctions_2_0,
_QOpenGLFunctions_2_1, _QOpenGLFunctions_4_1_Core, QtSensors, QtSerialPort,
QtX11Extras, QtBluetooth, QtPositioning, QtQuickWidgets, QtWebSockets, Enginio,
QtWebChannel, QtWebEngineWidgets.
The PyQt5 Python package will be installed in
/home/hugo/Desktop/my_pyqt_examples/venv/lib/python3.4/site-packages

如果需要更多信息,请告诉我。 我还尝试针对 Ubuntu 存储库的 qt 版本安装 PyQt 5.2,但我遇到了同样的错误。我能做什么?

编辑:

我改用 sip 4.16.7 克服了这个问题。但我认为这不是解决方案,所以如果有人知道为什么最新版本不起作用,请详细说明。

最佳答案

我遇到了同样的问题,我通过在 make 步骤之前指定 sip 路径解决了这个问题: python configure.py --sip-incdir=/opt/sip-4.6.9/include/python2.7

关于qt5 - 安装 PyQt 5.4.2 错误 : sip api reference,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31456956/

相关文章:

c++ - 如何在 OpenSuse 上的 Qt 中访问 Awesomefonts

c++ - 如何将 Switch Qml 添加到 qt widgets?

linux - conf 上的语法和 RNDC 绑定(bind)错误

git - 在 git 中列出特定远程的分支

python - PyQt QtWebChannel : calling Python function from JavaScript

python - 使用 PyOpenGL 和 PyQt5 制作球体时出现问题

python - 如何使用pyqtgraph TimeAxisItem使X轴时间动态刷新

python - Pyqt5 中的 QThreads : is this the correct C++ to Python translation of the official QThread docs?

javascript - 在 QML 中动态创建 ListModel

ubuntu - 如何通过 curl 解决 SSL 超时问题?