1. 所有Qt版本下载地址:
http://download.qt.io/archive/qt/
2. 所有Qt Creator下载地址:
http://download.qt.io/archive/qtcreator/
3. 所有Qt VS开发插件下载地址:
http://download.qt.io/archive/vsaddin/
也可在VS IDE中搜索下载
4. Qt相关下载大全
http://download.qt.io/
5.镜像网站
清华大学开源软件镜像站
https://mirrors.tuna.tsinghua.edu.cn/qt/
参考博客:
https://blog.csdn.net/weixin_50945613/article/details/131541580
6.linux(ubuntu)下用命令行安装qt环境
-
1.安装Qt的基本库与IDE
sudo apt-get install qt5-default
sudo apt-get install qtcreator -
2.安装qmake Cmake
sudo apt-get install qt5-qmake
sudo apt install cmake -
3.安装g++,gcc
sudo apt install g++ gcc -
4.安装QtQucik库 用来开发qml页面
sudo apt-get install qtdeclarative5-dev -
5.安装QMLmodule
sudo apt install qml-module-qtquick-controls2 -
6.安装QtMultimedia库
sudo apt-get install qtmultimedia5-dev
sudo apt-get install libqt5multimedia5-plugins
sudo apt install qml-module-qtmultimedia -
7.其他开发库
sudo apt install qml-module-qtquick-extras
sudo apt install qml-module-qt-labs-platform -
8.安装qt例子
apt-get install qtbase5-examples