1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
/*!
\page get-and-install-qt.html
\title Get and Install Qt
\brief Downloading and installing with \QOI or \QMT.
You can get Qt, its modules and tools via \QOI or \QMT.
Via \QOI you can do new installations. \QMT is included in each Qt installation
and with it you can update your Qt installation for example by adding and
removing components.
You can use \QOI and \QMT via a graphical user
interface or a command line interface. The command line interface
enables installing and uninstalling without any user interaction, that is,
unattended usage.
To learn the basics of getting and installing Qt, take the
\l {https://www.qt.io/academy/course-catalog#how-to-install-qt}
{How to Install Qt} course in Qt Academy.
\section1 Using \QOI
You can download \QOI via \l{https://login.qt.io}{Qt Account}
as follows:
\list 1
\li Select \uicontrol{Downloads}
\li Download \QOI for your host: Linux (ARM64 or x64), macOS, or Windows (ARM64 or x64)
\endlist
See \l{Get and Install Qt with \QOI} for more information
about how to use \QOI.
\l{Get and Install Qt with Command Line Interface} describes how you can use
\QOI with the command line interface.
\image qtinstallercomponents.webp
\section1 Using \QMT
After you install Qt, use \QMT under <install_dir> to
add, update, or remove installed components.
For more information about how to use \QMT with the command line
interface, see \l{Get and Install Qt with Command Line Interface}.
\image maintenancetool.webp
\section1 Building Qt from sources
You can also build Qt yourself. This can be useful in many
scenarios, for example, if no prebuilt packages exist for your
platform, if you need to modify Qt during debugging, or if you plan
to contribute to Qt. See \l{Building Qt Sources} for instructions on
\l{Getting Qt Sources from the Git repository}{obtaining the Qt source code},
information about Qt's prerequisites, and guidelines on configuring and
building Qt.
*/
|