如何修复配置:错误:安装 wireshark 时 Qt 不可用?

如何修复配置:错误:安装 wireshark 时 Qt 不可用?

这是我的问题:

cd '/home/james/Desktop/wireshark-2.0.2'
./configure

...

checking if profile builds must be generated... no
checking for Qt5Core - version >= 5.0.0... no
checking for QtCore - version >= 4.7.0... no

configure: error: Qt is not available

如何修复此问题?我想从 tar 文件完整安装 wireshark。

答案1

wireshark 的配置方式需要 QT。如果找不到它,可能是因为某些路径不正确或未安装 Qt。

解决方案:

开始于检查 Qt 是否已安装

答案2

您需要安装:

sudo apt-get install qt-sdk

在某些情况下,请执行以下操作:

sudo apt-get install qttools5-dev

相关内容