這次演示安裝5.9.0版本,因為是長期支援的版本,所以進入到archive/qt/5.9/5.9.0
給安裝包分配執行許可權
命令:chmod +x qt-opensource-linux-x64-5.9.0.run
執行安裝程式,進入到安裝介面
命令:./qt-opensource-linux-x64-5.9.0.run
需要登入,可以點skip跳過
選擇安裝元件,根據自己的需要勾選需要安裝的元件,但是建議這樣選擇(帶qt的和gcc全選)
之後根據嚮導一步一步來就能安裝好了~
一般安裝好之後會遇到兩個問題
乙個提示,執行qmake時出錯
15:50:56: could not determine which "make" command to run. check the "make" step in the build configuration.
error while building/deploying project planets-qml (kit: desktop qt 5.9.0 gcc 64bit)
when executing step "qmake"
另乙個提示,找不到lgl
../../../../5.9/gcc_64/include/qtgui/qopengl.h:139:13: fatal error: gl/gl.h: no such file or directory
139 | # include | ^~~~~~~~~
compilation terminated.
make: *** [makefile:1009: main.o] error 1
15:55:01: 程序"/usr/bin/make"退出,退出** 2 。
error while building/deploying project planets-qml (kit: desktop qt 5.9.0 gcc 64bit)
when executing step "make"
原因是沒安裝對應的軟體。
解決第乙個錯誤:
sudo apt install cmake g++
解決第二個錯誤:
sudo apt install libgl1-mesa-dev
執行上述操作後,能正常編譯執行示例:
QT Linux下安裝手冊
by jackie on june 13,2008 4 04 pm 3 comments previous next edit 具體的安裝辦法 1 去這裡 tar zxvf qt x11 opensource src 4.4.0.tar.gz 3 把這個目錄移到 usr local目錄下,或者不移,...
轉 QT Linux下安裝手冊
tar zxvf qt x11 opensource src 4.4.0.tar.gz 3 把這個目錄移到 usr local目錄下,或者不移,放在 home目錄也無所謂,下面的安裝過程是把這個目錄移到 usr local目錄下,改名為qt,如果您沒有移動,在設定的時候注意目錄。4 修改 可以使用v...
Ubuntu下安裝QT開發
我使用的作業系統是 ubuntu 10.0,使用目前最新版本的qt 4.4.0,安裝起來非常簡單,只要執行以下命令就行 sudo apt get install qt4 dev tools qt4 doc qt4 qtconfig qt4 demos qt4 designer qtcreator 注...