QtCreator:没有找到有效的工具包

QtCreator: No valid kits found(QtCreator:没有找到有效的工具包)
本文介绍了QtCreator:没有找到有效的工具包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

仅在 Windows 7 上安装了 IDE.我想创建一个普通 C++ 项目(非 QT 项目);但是我收到一个错误:找不到有效的套件.当我点击 Options->Kits 时,我看到了 Desktop (default) 套件,它没有显示任何错误.

Installed just the IDE on Windows 7. I want to create a Plain C++ Project (Non-QT Project); however I get an error: No valid kits found. When I click on Options->Kits, I see the Desktop (default) kit, and it shows no errors.

我收到错误是因为我没有安装 Qt 库吗?如果是这样,有什么办法可以绕过下载/安装它而只使用 IDE?

Am I getting the error because I didn't install a Qt library? If so, is there any way I can bypass downloading/installing that and just use the IDE?

推荐答案

发现问题.Qt Creator 希望您使用在其 Qt 库之一下列出的编译器.使用维护工具安装它.

Found the issue. Qt Creator wants you to use a compiler listed under one of their Qt libraries. Use the Maintenance Tool to install this.

这样做:

转到工具 -> 选项.... 选择构建 &向左跑.打开套件选项卡.您应该在列表中有 Manual -> Desktop (default) 行.选择它.现在在 Qt 版本的 PATH (qt5) 中选择类似 Qt 5.5.1 的东西组合框,然后单击应用按钮.从现在开始你应该可以创建、构建和运行空的 Qt 项目.

Go to Tools -> Options.... Select Build & Run on left. Open Kits tab. You should have Manual -> Desktop (default) line in list. Choose it. Now select something like Qt 5.5.1 in PATH (qt5) in Qt version combobox and click Apply button. From now you should be able to create, build and run empty Qt project.

这篇关于QtCreator:没有找到有效的工具包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)