jetson nano qtcreator no valid kits found
时间: 2024-01-17 11:05:17 浏览: 103
The "no valid kits found" error in Qt Creator on Jetson Nano can occur due to various reasons, such as incomplete installation of Qt Creator, missing Qt libraries, or incorrect configuration of the project.
Here are some possible solutions to fix this issue:
1. Make sure that you have installed the necessary Qt libraries on your Jetson Nano. You can install them using the following command:
```
sudo apt-get install qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-controls2 qml-module-qtquick-dialogs qml-module-qtquick-layouts qml-module-qtquick-templates2 qml-module-qtquick-window2 qml-module-qt-labs-settings
```
2. Check if you have configured the correct Qt version in Qt Creator. Go to Tools -> Options -> Devices -> Kits, and make sure that you have selected the correct Qt version for your project.
3. If you have installed multiple versions of Qt, make sure that you have added the correct Qt path in Qt Creator. Go to Tools -> Options -> Build & Run -> Kits, and check the Qt version path.
4. Try to create a new project in a different location and check if the issue persists. If it works, there might be some issues with your previous project configuration.
5. Try to reinstall Qt Creator and Qt libraries on your Jetson Nano.
I hope one of these solutions will help you resolve the "no valid kits found" error in Qt Creator on Jetson Nano.
阅读全文