QtCreator: No valid kits found

C++QtIdeQt Creator

C++ Problem Overview


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.

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?

C++ Solutions


Solution 1 - C++

Though OP is asking about Windows, this error also occurs on Ubuntu Linux and Google lists this result first when you search for the error"QtCreator: No valid kits found".

On Ubuntu this is solved by running:

For Qt5:

sudo apt-get install qt5-default

For Qt4:

sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui

This question is answered here and here, though those entries are less SEO-friendly...

Solution 2 - C++

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.

To do so:

> 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.

Solution 3 - C++

No valid Kits found The problem occurs because qt-creator don't know the versions of your qt, your compiler or your debugger. First off, let's solve the Qt versions. It may normally solve the others too ;).

You try to create a new project, run select a kit and then there is no kit available in the list.

Follow the steps:

  1. Execute in your terminal the command: sudo apt-get install qt5-default to install qt version 5.
  2. Verify the version of your Qt and the location of your qmake file. Do this by executing in your terminal the command qmake --version. You may have a result similar to this line. QMake version 3.1 Using Qt version 5.9.5 in /usr/lib/x86_64-linux-gnu. What's important here is the location /usr/lib/x86_64-linux-gnu.
  3. Open your Qt-creator.
  4. Go to "Tools>Options" or "Outils>Options"
  5. Select the Qt Versions combobox and select and click "Add" or "Ajouter"
  6. Then find the qmake file in the location of step 2. Here /usr/lib/x86_64-linux-gnu/qt5/bin/ here you have the qmake file for qt5. Open it, click Apply.
  7. Go to "Kits" combobox. Select Desktop(by default) or Desktop(par défaut). Then scroll down to the button to select Qt version: and list down to select the version you just add. 8.Then apply all. Check your compiler and debugger and it's ok. You're done.

Yes I ...

Hope it's help ;)

Solution 4 - C++

In my case the issue was that my default kit's Qt version was None.

Go to Tools -> Options... -> Build & Run -> Kits tab, click on the kit you want to make as default and you'll see a list of fields beneath, one of which is Qt version. If it's None, change it to one of the versions available to you in the Qt versions tab which is just next to the Kits tab.

Solution 5 - C++

For QT 5.* if you face error at Kits, like No Valid Kits Found, go to Options->Build&Run-> (Kits tab) then you see a Manual category which should list Desktop as the default.

Just go to your OS Terminal and write sudo apt-get install qt5-default, go back to QT Creator and Start your New Project, and there you see the kit option Desktop included in the list.

Solution 6 - C++

I had a similar problems after installing Qt in Windows.

This could be because only the Qt creator was installed and not any of the Qt libraries during initial installation. When installing from scratch use the online installer and select the following to install:

  1. For starting, select at least one version of Qt libs (ex Qt 5.15.1) and the c++ compiler of choice (ex MinGW 8.1.0 64-bit).

  2. Select Developer and Designer Tools. I kept the selected defaults.

Note: The choice of the Qt libs and Tools can also be changed post initial installation using MaintenanceTool.exe under Qt installation dir C:\Qt. See here.

Solution 7 - C++

In my case, it goes well after I installed CMake in my system:)

sudo pacman -S cmake

for manjaro operating system.

Solution 8 - C++

Another way to solve this issue (I did it on Ubuntu 16.04 but it might also work for windows and other Ubuntu versions):

While going through the installation steps, when you reach the step where you choose which packages to install via check boxes, instead of just pressing next with the default "Tools" checkbox selected also check the box for the version of QT you would like in addition to the "Tools" box. I usually check the first box which is the latest version of QT.

After doing this you should not see the "no valid kits found" issue described in this thread.

Happy Coding.

Solution 9 - C++

on macOS: (as of 2021)
  1. brew install qt e.g. qt6
  2. qmake --version will output:
QMake version 3.1
Using Qt version 6.0.3 in /usr/local/Cellar/qt/6.0.3_2/lib

(This is the path to the QT installation --> `/usr/local/Cellar/qt/6.0.3_2/lib`)
  1. Go to `Preferences -> Kits -> Qt Versions
  2. Click Add then navigate to /usr/local/Cellar/qt/6.0.3_2/bin
  3. Select qmake executable
  4. Go to Kits tab
  5. Select Desktop (x86-darwin.....) in the list
  6. Scroll down to Qt version dropdown box and select your newly installed Qt version.
  7. Click Ok.

Solution 10 - C++

I had solved this issue on my Linux mint , first :

  1. install qmake : sudo apt-get install qt5-default

  2. go to terminal and type qmake, you should get the path of qmake

  3. create a new project (application widget type ), when you reach the kits part you should find desktop list item, click manage then go to the kits tab bar and scroll down until you find a drop-down called Qt version, click manage and paste the path there then submit.

  4. Now the settings are done !!

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAgrim PathakView Question on Stackoverflow
Solution 1 - C++mmdanzigerView Answer on Stackoverflow
Solution 2 - C++Agrim PathakView Answer on Stackoverflow
Solution 3 - C++Joseph TankouaView Answer on Stackoverflow
Solution 4 - C++abcoepView Answer on Stackoverflow
Solution 5 - C++Archit GoelView Answer on Stackoverflow
Solution 6 - C++nae9onView Answer on Stackoverflow
Solution 7 - C++LynView Answer on Stackoverflow
Solution 8 - C++AmrView Answer on Stackoverflow
Solution 9 - C++puerileView Answer on Stackoverflow
Solution 10 - C++Mhadhbi issamView Answer on Stackoverflow