probable noob issue: cannot get QT creator runnning
-
I installed QT for eval.
I tried to follow a training video "Using C++ Models with Qt Quick Views", https://doc.qt.io/qt-5/qtquick-modelviewsdata-cppmodels.html , as I want to look at a c++ backend feeding the visualization.
I use QT creator 11.3. The training uses 4.41.
the training says to create a "Qt quick application 2" project. The 11.3 has only "qt quick application" so I create that, for Qt > 6.4. The new 11.3 asks for a kit, I use "Desktop 6.6 MinGW 64 bit". After finishing there are following errors
!
Consequently I cannot do anything.concerning instalation my status is hopefully complete, like
When I use QT design studio, I can do most of the stuff in the training but could not find a way to incorporate c++ there.
What did I overlook here? shall I go to design studio or stay at creator? -
problem is solved with a command line in the console like
git config --global http.sslVerify false
reason was that QT creator intrinsically uses GIT when setting up a project and connects to a GIT server. The data from the GIT has self-certification and our company network does not allow this. With the command above we tell GIT that it shall not check the SSL certificate.
-
-
problem is solved with a command line in the console like
git config --global http.sslVerify false
reason was that QT creator intrinsically uses GIT when setting up a project and connects to a GIT server. The data from the GIT has self-certification and our company network does not allow this. With the command above we tell GIT that it shall not check the SSL certificate.
-
A aha_1980 has marked this topic as solved on