2016-11-13 77 views
1

安裝sip後,當試圖安裝PyQt-x11-gpl-4.11時,我不斷收到這個可愛的錯誤消息。在安裝sip後安裝PyQt(用於pyuic4)OK:錯誤:PyQt-x11-gpl-4.11安裝

mycommandline$ python configure-ng.py --verbose 

Querying qmake about your Qt installation... 

Determining the details of your Qt installation... 

/usr/bin/qmake -o qtdetail.mk qtdetail.pro 

make -f qtdetail.mk 

g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -DQT_WEBKIT -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4 -I. -o qtdetail.o qtdetail.cpp 
g++ -m64 -Wl,-O1 -o qtdetail qtdetail.o -L/usr/lib/x86_64-linux-gnu -lQtCore -lpthread 

Error: Failed to determine the detail of your Qt installation. 

我真的無法弄清楚它的含義。這是一個依賴性問題嗎?

回答

1

假設你使用的是Ubuntu,不需要從源代碼編譯來獲得pyuic4。如果您安裝了正確的官方軟件包,則應包含所有內容。

只要安裝或者這樣:

  • 的Python 2:蟒蛇-QT4PyQt4的-DEV-工具

或者這樣:

  • 的Python 3:python3-pyqt4 and pyqt4-dev-too ls
+0

沒有安裝pyqt4-dev-tools,非常感謝! :) – Julia