Errors building qt_gui_cpp in ros2

使用 colcon build --symlink-install 對ros2源碼進行編譯的時候出現下面錯誤:

--- stderr: qt_gui_cpp
sip: Usage: sip [-h] [-V] [-a file] [-b file] [-B tag] [-c dir] [-d file] [-D] [-e] [-f] [-g] [-I dir] [-j #] [-k] [-m file] [-o] [-p module] [-P] [-r] [-s suffix] [-t tag] [-w] [-x feature] [-X id:file] [-y file] [-z file] [@file] [file]
Traceback (most recent call last):
  File "/home/sph/ros2_ws/install/python_qt_binding/share/python_qt_binding/cmake/sip_configure.py", line 109, in <module>
    subprocess.check_call(cmd)
  File "/usr/lib/python3.6/subprocess.py", line 311, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/bin/sip', '-c', '/home/sph/ros2_ws/build/qt_gui_cpp/sip/qt_gui_cpp_sip', '-b', '/home/sph/ros2_ws/build/qt_gui_cpp/sip/qt_gui_cpp_sip/pyqtscripting.sbf', '-I', '/usr/share/sip/PyQt5', '-w', '-n', 'PyQt5.sip', '-t', 'WS_X11', '-t', 'Qt_5_12_3', 'qt_gui_cpp.sip']' returned non-zero exit status 1.
make[2]: *** [sip/qt_gui_cpp_sip/Makefile] Error 1
make[1]: *** [src/qt_gui_cpp_sip/CMakeFiles/libqt_gui_cpp_sip.dir/all] Error 2
make: *** [all] Error 2

剛開始python3缺失pyqt5,就用

pip3 install pyqt5

安裝了pyqt5,但是一直出現上面的錯誤,後來發現其實這樣不對,會導致系統庫鏈接出錯,所以解決辦法是:

sudo pip3 uninstall pyqt5

然後再進行編譯就OK啦。
在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章