Closed lobneroO closed 10 months ago
return {
type = 'executable',
command = vim.fn.exepath('debugpy-adapter'),
}
vim.fn.exepath('debugpy-adapter')
probably returns nothing, that's why your command
is empty in the stacktrace.
You can verify with :lua print(vim.fn.exepath('debugpy-adapter'))
Make sure debugpy-adapter
is in your $PATH
or follow the README's instruction.
I am not 100% sure this bug belongs here, but issue someone suggested posting it here on the kickstarter issue
I am in the process of setting up my own version of nvim-lua/kickstart. I wanted to test the debugging capabilities and tried debugging one of my python projects. After enabling the debugging in the kickstart project and installing the debugpy DAP throug Mason, I hit "F5" to toggle the debugger, getting the following error:
Since I am really new to this, I have no idea what to look for / how to fix this. I had a look at the stack trace and couldn't see any empty command. I have added the file, if it helps in any way. dap.zip