我想为我的ubuntu 14.10安装pyotherside,所以我做了:
git clone https://github.com/thp/pyotherside.git
cd pyotherside
sudo qmake
成功,但当我这样做时:
sudo make
它说:
cd src/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/src/pyotherside/src/src.pro -o Makefile ) && make -f Makefile
Project MESSAGE: PYTHON_CONFIG = python3-config
Project ERROR: Unknown module(s) in QT: quick qml
Makefile:39: recipe for target 'sub-src-make_first' failed
make: *** [sub-src-make_first] Error 3
我该如何解决这个问题?
答案 0 :(得分:0)
之后我想出来了。
Ubuntu 14.10已经安装了QT5,但它是QT5.0,你应该手动更改为你安装的QT5.4。
sudo home/X/Qt/5.4/gcc_64/bin/qmake
这很有效。