目录
1、问题错误
安装qt qmake assistant 错误:could not find a Qt installation of ''
在进行 qmake 的时候,出现了下面的错误:
could not find a Qt installation of ‘’
2、问题产生的原因
大概意思就是,本系统可能有qmake,后面就算安装qt,有对应的qmake,但是编译时候,并不能链接到对应的qmake上面去。
3、解决的方法
(1)找到qmke命令链接路径
which qmake
(2)删除原来连接
sudo rm /usr/bin/qmake
(3)重新链接
注意:此处的qt的qmake所在的位置,应该是你真实安装的位置。
sudo ln -s /opt/Qt5.7.1/5.7/gcc_64/bin/qmake /usr/bin/qmake
重新编译即可。