Skip to content

Commit b3db297

Browse files
committed
Helps to specify the python interpreter if there is no executable set on the standalone
1 parent 8e9b73b commit b3db297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples-proposed/024-aggregated-compute-ensemble/instance_component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def create_cmd(alpha: float, L:float, T_final:float, Nx:int, Nt:int) -> list[Any
2323
:param Nt: number of time steps
2424
:returns: list of command line arguments to be executed in step()
2525
"""
26-
cmd = ['gen_data.py', '--alpha', alpha, '--L', L, '--T_final', T_final,
26+
cmd = ['python3', 'gen_data.py', '--alpha', alpha, '--L', L, '--T_final', T_final,
2727
'--Nx', Nx, '--Nt', Nt]
2828
return cmd
2929

0 commit comments

Comments
 (0)