I'm using Ignition on Linux 22.04 (GPU)
My objective is when i click a button from ignition's perspective-view I need to open a command prompt & go to some path where i have my some other camera-vision project (based on streamlit-python) & run that project
i try to use system.util.execute code but not working
so i take myself 2 steps back, now i just try to open command itself using following
system.util.execute(['/bin/bash', '-c', 'gnome-terminal'])
Nothing happens
Even for windows i try by following
system.util.execute(['cmd.exe', '/k'])
still nothing happens
i think if i manage to open up a command prompt then i may clear all the other mentioned above so give some deep insights & what i might miss?