Qt 5.6 install on windows

Trabla: install Qt 5.6  open-source edition on windows


Qt 5.6 install on windows

This tutorial explains how to install Qt 5.6 with Qt Creator open-source edition on windows.


Solving:

1. Go to official web-site http://www.qt.io/download
select "Open source distribution ..."

Qt 5.6 install on windows 7 tutorial 1

2. Select "Yes"

Qt 5.6 opensource install on windows 7 tutorial 2

3. Select "Yes"

Qt 5.6 opensource install on windows 7 tutorial 3

4. Click "Get Started"

Qt 5.6 opensource install on windows 7 tutorial 4

5. Click "Download Now"

Qt 5.6 opensource install on windows 7 tutorial 5

6. Double click on Qt 5.6 open source installer to run setup wizard

Qt 5.6 opensource install on windows 7 tutorial 6

7. Click "Run" button

Qt 5.6 opensource install on windows 7 tutorial 7


8. "Welcome" screen - click "Next" button

Qt 5.6 opensource install on windows 7 tutorial 8

9. "Qt Account" screen - click "Skip"

Qt 5.6 opensource install on windows 7 tutorial 9

10. "Setup" screen - click "Next" button

Qt 5.6 opensource install on windows 7 tutorial 10

Qt 5.6 opensource install on windows 7 tutorial 11


11. "Installation Folder" screen - change install directory if needed
and press "Next" button


Qt 5.6 opensource install on windows 7 tutorial 12

12. "Select Components" screen - press "Next" button

Qt 5.6 opensource install on windows 7 tutorial 13

13. "License Agreement" screen - read license,
select "I have read ... "
press "Next" button

Qt 5.6 opensource install on windows 7 tutorial 14

14. "Start Menu shortcuts" screen - press "Next" button

Qt 5.6 opensource install on windows 7 tutorial 15

15. "Ready to Install" screen - press "Install" button

Qt 5.6 opensource install on windows 7 tutorial 16
16. Installing ...

Qt 5.6 opensource install on windows 7 tutorial 17

Qt 5.6 opensource install on windows 7 tutorial 18

17.  "Completing Qt Wizard" screen - press "Finish" button

Qt 5.6 opensource install on windows 7 tutorial 19

18. Hooray!!! Now let's create simple Hello World project to check if all is OK.
Press button "New Project"

Qt 5.6 opensource install on windows 7 tutorial 20

19. Select "Qt Console Application" and click "Choose..." button

Qt 5.6 opensource install on windows 7 tutorial 21

20. Type name - "Test" and press "Next" button

Qt 5.6 opensource install on windows 7 tutorial 22

21. Click "Next" button

Qt 5.6 opensource install on windows 7 tutorial 23

22. Click "Finish" button

Qt 5.6 opensource install on windows 7 tutorial 24

23. Replace generated code with following

#include <QTextStream>

int main()
{
    QTextStream cout(stdout);

    cout << "Hello World!!!" << endl;

    return 0;
}


Qt 5.6 opensource install on windows 7 tutorial 25


24. Run - press triangle green button  or press Ctrl + R

Qt 5.6 opensource install on windows 7 tutorial 26

25. Hooray !!!

Qt 5.6 opensource install on windows 7 tutorial 27


No comments:

Post a Comment