Run Command
The run command is the command to use when running a project, e.g.
python3 {{entry}}
(where {{entry}}
is a template for the current filename). To add or modify, click the Settings icon in the left sidebar and locate the Run Command section:
Run Command setting
The run command must be a single executable statement, such as
python main.py
. A command such as cd src ; python main.py
will not return expected results during testing.Here is an example of a run command for Python:
python3 {{entry}}
Last modified 2yr ago