Linux安装 PyQt-x11-gpl-4.11.3.tar.gz笔记

安装PyQt-x11-gpl-4.11.3.tar.gz


执行:python3 configure.py


报错:Failedto determine the layout of your Qt installation.Tryagain using

the --verbose flag to see more detail about the problem.

这是编译器问题,应该指定qt4编译器:python3 configure.py --qmake /usr/bin/qmake-qt4


然后会报错误:...-g or -k argument


所以正确的命令是:python3 configure.py -k --qmake /usr/bin/qmake-qt4

接着:make

make install

你可能感兴趣的:(Qt,Python,机器学习,LInux,PyQt)