Trabla: install Qt 5.6 open-source edition 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 ..."
2. Select "Yes"
3. Select "Yes"
4. Click "Get Started"
5. Click "Download Now"
6. Double click on Qt 5.6 open source installer to run setup wizard
7. Click "Run" button
8. "Welcome" screen - click "Next" button
9. "Qt Account" screen - click "Skip"
10. "Setup" screen - click "Next" button
11. "Installation Folder" screen - change install directory if needed
and press "Next" button
13. "License Agreement" screen - read license,
select "I have read ... "
press "Next" button
14. "Start Menu shortcuts" screen - press "Next" button
15. "Ready to Install" screen - press "Install" button
16. Installing ...
17. "Completing Qt Wizard" screen - press "Finish" button
18. Hooray!!! Now let's create simple Hello World project to check if all is OK.
Press button "New Project"
19. Select "Qt Console Application" and click "Choose..." button
20. Type name - "Test" and press "Next" button
21. Click "Next" button
22. Click "Finish" button
23. Replace generated code with following
#include <QTextStream>
int main()
{
QTextStream cout(stdout);
cout << "Hello World!!!" << endl;
return 0;
}
24. Run - press triangle green button or press Ctrl + R
25. Hooray !!!
No comments:
Post a Comment