I'm using python 3.12 with terminology and the following happens, what library am I missing?
Traceback (most recent call last):
File "/home/fer-fong/.local/bin/pokemon", line 8, in <module>
sys.exit(main())
^^^^^^
File "/home/fer-fong/.local/lib/python3.12/site-packages/pokemonterminal/main.py", line 113, in main
scripter.change_terminal(target.get_path())
File "/home/fer-fong/.local/lib/python3.12/site-packages/pokemonterminal/scripter.py", line 81, in change_terminal
TERMINAL_PROVIDER.change_terminal(image_file_path)
File "/home/fer-fong/.local/lib/python3.12/site-packages/pokemonterminal/terminal/adapters/terminology.py", line 12, in change_terminal
run(["tybg", path], check=True)
File "/usr/lib/python3.12/subprocess.py", line 548, in run
with Popen(*popenargs, **kwargs) as process:
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/subprocess.py", line 1026, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.12/subprocess.py", line 1955, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'tybg'```
I'm using python 3.12 with terminology and the following happens, what library am I missing?