Qt 5.14.2用不了QMemoryInfo,:-1: error: Unknown module(s) in QT: memoryinfo
时间: 2023-12-19 10:05:15 浏览: 114
qt-opensource-windows-x86-5.14.2.exe
4星 · 用户满意度95%
如果您在使用Qt 5.14.2时遇到了"Unknown module(s) in QT: memoryinfo"的错误,这可能是由于您的Qt版本没有包含memoryinfo模块所致。您可以尝试更新您的Qt版本,或者使用Qt Maintenance Tool手动安装memoryinfo模块。
如果您已经安装了memoryinfo模块,但仍然无法在代码中使用QMemoryInfo类,那么您可能需要检查您的项目文件(.pro)是否正确地包含了memoryinfo库。请确保您的项目文件中包含了以下配置项:
```
QT += memoryinfo
```
如果问题仍然存在,请检查您的Qt安装目录,以确保memoryinfo模块已经正确安装。在Windows平台上,memoryinfo模块应该位于Qt安装目录下的\Qt5.14.2\Tools\QtInstallerFramework\lib\qtifw\lib\memoryinfo目录中。您可以尝试手动将该目录添加到您的系统路径中,然后重新编译您的应用程序。
希望这些信息能够帮助您解决问题。
阅读全文