Open mvds314 opened 2 weeks ago
Looks like a great and useful plugin, can't get it to work though.
My config looks like this: { "epheien/termdbg", cmd = "TermDebug" } And am using the lazy.nvim package manager under neovim
{ "epheien/termdbg", cmd = "TermDebug" }
When I run :Termdbg pdb3 somefile.py, I get Error while processing function termdbg#StartDebug, and command not found: pdb3. (same for pdb, ipdb etc.)
:Termdbg pdb3 somefile.py
Error while processing function termdbg#StartDebug
command not found: pdb3
Not sure what to do, pdb is something you import right, and not a command on your system.
pdb
You can encapsulate pdb into a script and put it in your PATH, such as:
PATH
#!/bin/bash python3 -m pdb "$@"
A more recommended approach is: pip3 install ipdb and use ipdb3 instead of pdb
pip3 install ipdb
ipdb3
Looks like a great and useful plugin, can't get it to work though.
My config looks like this:
{ "epheien/termdbg", cmd = "TermDebug" }
And am using the lazy.nvim package manager under neovimWhen I run
:Termdbg pdb3 somefile.py
, I getError while processing function termdbg#StartDebug
, andcommand not found: pdb3
. (same for pdb, ipdb etc.)Not sure what to do,
pdb
is something you import right, and not a command on your system.