I am trying to set up the DDD debugger on Ubuntu to debug python3 programs. However, as the documentation of ddd suggests, for python programs it uses pydb. Invoking ddd --pydb produces an error on my machine (Ubuntu 22.04), since pydb is not installed and not installable - it seems to have been depreciated some time ago.
So I was wondering if it is possible to use DDD with the newer PDB debugger (or any python3-conform python debugger, for that matter).
Thanks in advance.