Qt/Qt 개발환경

Ubuntu 20.04에 QT 설치하기

webnautes 2023. 10. 5. 21:11
반응형

Ubuntu 20.04에 QT5 를 설치하는 방법을 다룹니다. 



2021. 8. 17 최초작성




우선 g++ 컴파일러가 필요하며 추가로 make를 설치해야 합니다.  

 

$ sudo apt-get install build-essential make



QT WIKI에서 확인해보니 다음처럼 설치하라고 합니다. 

 

$ sudo apt-get install qt5-default



qtcreator는 설치되지 않기 때문에 필요시  추가로 설치해줘야 합니다. 

 

$ sudo apt-get install qtcreator




QT 5.12가 설치됩니다. 

 

$ qmake -version

QMake version 3.1

Using Qt version 5.12.8 in /usr/lib/x86_64-linux-gnu





qtcreator를 사용하지 않고 QT를 사용하는 강좌를 정리해보고 있습니다. 




참고

 

https://wiki.qt.io/Install_Qt_5_on_Ubuntu




qtcreator를 사용하지 않고 QT를 사용하는 강좌를 정리해보고 있습니다



QT 강좌 01 - Hello World

https://webnautes.tistory.com/1859 

 

QT 강좌 02 - Simple GUI

https://webnautes.tistory.com/1860 

 

QT 강좌 03 - Push Button

https://webnautes.tistory.com/1861 

 

QT 강좌 04 - QLabel

https://webnautes.tistory.com/1862 

 

QT 강좌 05 - QMenu

https://webnautes.tistory.com/1863  

 

QT 강좌 06 - QToolBar

https://webnautes.tistory.com/1864 

 

QT 강좌 07 -  QVBoxLayout, QHBoxLayout

https://webnautes.tistory.com/1865 

 

QT 강좌 08 -  Button

https://webnautes.tistory.com/1866 

 

QT 강좌 09 -  QListWidget

https://webnautes.tistory.com/1867 

 

QT 강좌 10 -  QFormLayout

https://webnautes.tistory.com/1868 

 

QT 강좌 11 -  QGridLayout

https://webnautes.tistory.com/1869 

 

QT 강좌 12 -  QGridLayout 2

https://webnautes.tistory.com/1870 






반응형