python - Installing PyQt (for pyuic4) after sip install goes OK: error: PyQt-x11-gpl-4.11 install -
after installing sip
, keep getting lovely error message when trying install pyqt-x11-gpl-4.11
.
mycommandline$ python configure-ng.py --verbose querying qmake qt installation... determining details of 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 determine detail of qt installation.
i can't figure out means. dependency issue?
assuming you're using ubuntu, there's no need compile source pyuic4
. if install correct official packages, should included.
just install either this:
- python 2: python-qt4 , pyqt4-dev-tools
or this:
- python 3: python3-pyqt4 , pyqt4-dev-tools
Comments
Post a Comment