I have built some useful Python functions inside a .py
file. I use this function through LabView calling it by a Python node and pass arguments to it (images as array). The calling to Python functions is transparent and no console is opened at runtime. Now I need to debug the Python code so I need the Python console to open and wait for user interaction in a step by step mode.
Labview version is 2018 and Python is 3.7. I have made some tries using the subprocess module but I can't run the functions defined in my Python script.
def test():
print("provaprova")
return 0;
def debug_Command():
subprocess.call("test", shell=True)
return 0;