Debian Buster 安装 Qt 5.12

  • 从官网下载Qt源文件(以5.12.8为例):
$ wget https://download.qt.io/official_releases/qt/5.12/5.12.8/single/qt-everywhere-src-5.12.8.tar.xz

严谨的朋友可以检查一下md5.

  • 解压缩:
$ tar xvf qt-everywhere-src-5.12.8.tar.xz
  • 编译
$ ./configure
$ make
  • 安装(如果需要)
$ make install
  • 使用前记得正确设置路径,Qt安装在哪里就设置哪里,没安装就设置编译时用的临时目录,例如
$ export PATH="~/tmp/qt5.12/usr/bin/:$PATH"

安装的话一般在

$ export PATH="/usr/local/Qt-5.12/usr/bin/:$PATH"
  • 参考文献
    • https://doc.qt.io/qt-5.12/linux-building.html

你可能感兴趣的:(Debian Buster 安装 Qt 5.12)