123
123

Reputation: 8951

'No Valid Kits Found' in Qt Creator on macOS

I am installing Qt 5.5 on a new machine, and I ran into this exact same issue last time I set up my environment, but I completely forgot how I fixed it and have been working on it for hours. I've looked at questions on SO here, and a few other places, but none of them solve the issue for me.

I am running on OS X, and the fact that I ran into this problem the last time I installed it makes me think this is a surprisingly common issue for just trying to start a new project.

Anyone solved this problem on Mac before?

Upvotes: 1

Views: 19929

Answers (3)

ClearCrescendo
ClearCrescendo

Reputation: 1155

This happened for me because during the installation, on the versions page there is a tick box stating ("Use latest releases"). As this seemed like a reasonable default, I proceeded. This actually installed no Qt versions. So there were no kits installed. Hence this error during first use.

The problem is due to not making a selection in the list on the right, and can be remedied by running (macOS) ~/Qt/MaintenanceTool.app which will run through windows similar to the installation process. Select a Qt version on the page shown here.

Qt Version Selection Screen

Upvotes: 4

sateesh12
sateesh12

Reputation: 31

Alternately you may use C:\Qt\MaintenanceTool.exe to install missing components of your Qt Installation.

Upvotes: 1

JKSH
JKSH

Reputation: 2718

Qt Creator is only the IDE. You need the actual Qt libraries to build an application.

I suggest you uninstall your standalone Qt Creator, and install a Qt 5 package from http://www.qt.io/download-open-source/. This package includes both the Qt libraries as well as the Qt Creator IDE.

Upvotes: 1

Related Questions