QtCreator: No valid kits found

后端 未结 7 1960
独厮守ぢ
独厮守ぢ 2020-12-08 03:29

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 O

7条回答
  •  隐瞒了意图╮
    2020-12-08 04:24

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

提交回复
热议问题