安装qt4以后使用命令行编译时出现一下错误:
administrator@ubuntu:~/qt/qt-book/chap01/hello$ qmake hello.pro程序 'qmake' 已包含在以下软件包中:* qt3-dev-tools* qt4-qmake试试:sudo apt-get install <选定的软件包>bash: qmake:找不到命令
以下是正确的方法:
sudo apt-get -f install libqt4-dev
本文共 291 字,大约阅读时间需要 1 分钟。
安装qt4以后使用命令行编译时出现一下错误:
administrator@ubuntu:~/qt/qt-book/chap01/hello$ qmake hello.pro程序 'qmake' 已包含在以下软件包中:* qt3-dev-tools* qt4-qmake试试:sudo apt-get install <选定的软件包>bash: qmake:找不到命令
以下是正确的方法:
sudo apt-get -f install libqt4-dev
转载于:https://www.cnblogs.com/blindwandering/p/3701733.html