我正在尝试在 Ubuntu 16.04 上安装 quiteinsane gimp 插件。
https://sourceforge.net/projects/quiteinsane/
我收到此错误:
checking for Qt... configure: error: Qt (>= Qt 2.2.2) (headers and libraries) not found. Please check your installation!
在网上搜索后,我做了
sudo apt-get install libqt5-*
sudo apt-get install libqt4-*
sudo apt-get install libqt3-*
我仍然不断收到此错误。
我甚至按照网上的说明在我的主目录中安装了 Qt5,
https://wiki.qt.io/Install_Qt_5_on_Ubuntu
但我不知道如何让安装程序识别这一点。有人建议在 configure 行中添加安装的 include 和 lib 路径,但这也不起作用。这是我当时使用的 configure 命令:
./configure --enable-mt --with-qt-includes=/home/skumar/Qt/5.9.1/gcc_64/include --with-qt-libraries=/home/skumar/Qt/5.9.1/gcc_64/lib
谢谢你的帮助。
库马尔