I can't get pipeline_graph working either. I'm getting a different error though (below).
I'm using a PyCharm Python3.10 environment, so that I could install PySide2, and have tried a few scripts. They all give the same error. I can't find the relevant log or json files to see if that works.
(.venv) PS C:\Users\regor\PycharmProject\My_Blazepose> pipeline_graph run Main.py
Traceback (most recent call last):
File "C:\Python310\lib\runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "C:\Python310\lib\runpy.py", line 86, in _run_code
exec(code, run_globals)
File "C:\Users\regor\PycharmProject\My_Blazepose\.venv\Scripts\pipeline_graph.exe\main.py", line 7, in <module>
File "C:\Users\regor\PycharmProject\My_Blazepose\.venv\lib\site-packages\depthai_pipeline_graph\pipeline_graph.py", line 375, in main
p.cmd_tool(args)
File "C:\Users\regor\PycharmProject\My_Blazepose\.venv\lib\site-packages\depthai_pipeline_graph\pipeline_graph.py", line 154, in cmd_tool
self.process = subprocess.Popen(command, shell=False, text=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
File "C:\Python310\lib\subprocess.py", line 971, in init
self._execute_child(args, executable, preexec_fn, close_fds,
File "C:\Python310\lib\subprocess.py", line 1440, in _execute_child
hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
OSError: [WinError 193] %1 is not a valid Win32 application
Any thoughts how to fix?