https://download.qt.io/archive/qt/5.14/5.14.2/ Index of /archive/qt/5.14/5.14.2 download.qt.io 여기서 .run 파일을 다운로드하고 Qt 계정을 입력 후 설치하면 된다 vi ~/.profile 제일 아래 Qt가 설치된 디렉토리의 bin 폴더를 환경변수로 설정해주자 이런식으로 하면 됨 작성하면 source ~/.source 해당 명령어로 변경한 환경변수를 설정 폴더를 하나 생성해서 Qt 프로그램 소스코드를 작성해보자 // hello_world.cpp #include #include int main(int argc, char **argv) { QApplication app(argc, argv); QLabel *hello = new QL..