制作 pyotherside 时出错
Error while make for pyotherside
我想为我的 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
我该如何解决这个问题?
后来想通了
Ubuntu14.10已经安装了QT5,但是是QT5.0,需要手动改成你安装的QT5.4
sudo home/X/Qt/5.4/gcc_64/bin/qmake
这非常有效。
我想为我的 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
我该如何解决这个问题?
后来想通了
Ubuntu14.10已经安装了QT5,但是是QT5.0,需要手动改成你安装的QT5.4
sudo home/X/Qt/5.4/gcc_64/bin/qmake
这非常有效。