2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
|
2019-04-03 13:29:19 +02:00
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
//! [running python]
|
|
|
|
|
\section1 Running Python Projects
|
|
|
|
|
|
|
|
|
|
You can execute Qt for Python applications directly from \QC. If you
|
2020-01-15 11:06:44 +01:00
|
|
|
used the \l{Using Project Wizards}{new project wizard}
|
2019-04-03 13:29:19 +02:00
|
|
|
to create the application project, the \c main.py file is automatically
|
|
|
|
|
executed when you select the \uicontrol Run button.
|
|
|
|
|
|
|
|
|
|
You can specify another file to execute in the
|
|
|
|
|
\l{Specifying Run Settings for Python Projects}{run settings}
|
|
|
|
|
of the project.
|
|
|
|
|
|
|
|
|
|
//! [running python]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//! [run settings python]
|
|
|
|
|
|
|
|
|
|
\section1 Specifying Run Settings for Python Projects
|
|
|
|
|
|
|
|
|
|
You can specify settings for running Qt for Python applications:
|
|
|
|
|
|
2023-06-07 11:53:09 +02:00
|
|
|
\image qtcreator-python-run-settings.png {Python run settings}
|
2019-04-03 13:29:19 +02:00
|
|
|
|
|
|
|
|
\list
|
|
|
|
|
\li In the \uicontrol Interpreter field, specify the path to the
|
|
|
|
|
Python executable.
|
2020-03-24 17:01:45 +01:00
|
|
|
\li Select the \uicontrol {Buffered output} check box to buffer the
|
|
|
|
|
output. This improves output performance, but causes delays in
|
|
|
|
|
output.
|
2019-04-03 13:29:19 +02:00
|
|
|
\li In the \uicontrol Script field, you can see the path to the
|
|
|
|
|
main file of the project that will be run.
|
|
|
|
|
\li In the \uicontrol {Command line arguments} field, specify
|
|
|
|
|
command line arguments to be passed to the executable.
|
|
|
|
|
\endlist
|
|
|
|
|
|
2020-04-16 16:32:08 +02:00
|
|
|
If you want to run some other Python file than \c main.py, create a custom
|
2019-04-03 13:29:19 +02:00
|
|
|
executable run configuration:
|
|
|
|
|
|
|
|
|
|
\image qtcreator-python-run-settings-custom-executable.png
|
|
|
|
|
|
|
|
|
|
\list 1
|
|
|
|
|
\li Select \uicontrol Add > \uicontrol {Custom Executable}.
|
|
|
|
|
\li In the \uicontrol Executable field, specify the path to the
|
|
|
|
|
Python executable.
|
|
|
|
|
\li In the \uicontrol {Command line arguments} field, select
|
|
|
|
|
the Python file to run.
|
|
|
|
|
\endlist
|
|
|
|
|
|
|
|
|
|
//! [run settings python]
|
|
|
|
|
*/
|