9

I have installed Qt 4.5.0 community and I am trying to build my project with Qt5.10.0 MinGW 32 bit. Having QtQuick 2.12 imported in my qml file in a qtquick project, I face with the following error:

module "QtQuick" version 2.12 is not installed

It is worth mentioning that this module is among the suggested ones when I try to write the first characters of QtQu...

Would be appreciated if one could help me how to overcome this problem

eyllanesc
  • 235,170
  • 19
  • 170
  • 241
HoOman
  • 455
  • 1
  • 7
  • 15
  • Sorry It even does not predict the QtQuick 2.12. the latest version it suggests is QtQuick2.9 – HoOman Dec 16 '18 at 05:35

1 Answers1

19

According to the docs:

╭------┬---------┬----------------------------┬-------------------╮
|      |         | QtQuick.Controls,          |                   |
|      |         | QtQuick.Controls.Material, |                   |
|  Qt  | QtQuick | QtQuick.Controls.Universal,| Qt.labs.calendar, |
|      |         | QtQuick.Templates          | Qt.labs.platform  |
|      |         |                            |                   |
├------┼---------┼----------------------------┼-------------------┤
| 5.7  |   2.7   |          2.0               |        1.0        |
| 5.8  |   2.8   |          2.1               |        1.0        |     
| 5.9  |   2.9   |          2.2               |        1.0        |
| 5.10 |   2.10  |          2.3               |        1.0        |
| 5.11 |   2.11  |          2.4               |        1.0        |
| 5.12 |   2.12  |          2.12              |        1.0        |
╰------┴---------┴----------------------------┴-------------------╯

So in your case you should use QtQuick 2.10 or earlier.

eyllanesc
  • 235,170
  • 19
  • 170
  • 241
  • Thanks for your comment. Is there any method to update the current program? I a method instead of uninstalling the current version and downloading and installing the new version? – HoOman Dec 16 '18 at 07:57
  • @HoOman If you use the online installer you can update the packages, otherwise you will have to download everything returned – eyllanesc Dec 16 '18 at 14:44