-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
debugpy.listen
fails in VS Code terminal
#612
Comments
@samjijina How are you running the debugger? the no-config debugger should only impact you if you run |
@karthiknadig Further, I get the same error even in an interactive python interpreter (such as IPython):
|
When importing the
Here is what I see from the terminal, where the no-config debug is enabled: The first command shows that |
debugpy works fine when I use it in a non-VSCode terminal. For example, in the image below I am using Ubuntu's terminal with a SSH connection to a node in my cluster: However, the error is occurring when using VSCode's terminal as shown in the image below: Here are the environment contributors in VSCode: |
As far as I can tell, none of those contributors interfere. As you can see the Try disabling these settings, and see if that helps: |
I disabled both those settings but the error still persists. |
debugpy.listen
fails in VS Code terminal
Transferring this to |
I get a similar error in a VS code terminal (only in the stable version):
I just switch to a different port and it works.
|
We'd need a callstack for the FileNotFoundError. I can't reproduce that exact problem myself. |
I don't think this is a debugpy problem though. VS code must be doing something to interfere with opening ports in those terminals. |
could you share how to obtain the callstack for debugpy's listen()? |
I believe the log should show error. If you turn on logging, the pydevd.log file may have the callstack for the real exception it. That should be the import debugpy
debugpy.log_to('/file/path/to/write/logs') |
@rchiodo Thanks! Attaching three log files that were generated |
That's pointing to here: Which I believe is the first spot we write a response to VS code. My guess is that the port is only allowing reading and not writing for some reason. |
Also just wanted to mention, this issue is only showing up recently (within the last few days). I believe either the latest VSCode update or Python extension(s) updates are causing an issue since my debugging workflow and debugging commands have not changed. |
@karthiknadig I had not looked at the adapter log, but this might just be a symptom of the other error. It has this though:
|
@karthiknadig This would only be true if DEBUGPY_ADAPTER_ENDPOINTS is set? Are you guys setting that in the terminal? |
Actually, that might be causing the other error. If the adapter exits, we'd also get the error in the pydevd log. So mabye this isn't a socket problem, but a debugger extension issue. |
@rchiodo shouldn’t Debugpy have a We do need to add a way to turn this off. @eleanorjboyd can you look into adding a setting to turnoff no-config debugging. |
Not sure I agree. If you're setting this environment variable, then you must want to use it. What should it do instead? Just act like it wasn't set? Output a warning? Outputting a warning seems okay. |
@karthiknadig @rchiodo Python Debugger extension version 2025.0.1 (released 2025-02-12, 17:04:48) solved the issue. Not sure what changed but the error is gone. |
|
@samjijina We had to solve a different but related problem. Looks like it might have mitigated the issue. If this issue is not occurring for you, you can close this. @rchiodo We can discuss deletion/try except here #613 . The issue stems from simultaneous connection with different terminals on the same project. |
This is still happening to me using
eg: inside a vscode terminal:
If I run from a non-vscode terminal its fine. |
Running this in the vscode terminal seems to fix it:
But I have to run that everytime I start a vscode terminal. |
This issue has reappeared for me on version 2025.4.0 of the Python Debugger extension |
This works for me too |
I also started getting this issue when updating to 1.98.0 on a Mac M3 Pro, also with debugpy 1.8.13. Unfortunately Debugpy also works fine outside the vscode terminal. |
Hi- investigating issue where @tibordecamargo can you elaborate since your issue is different? (repro steps, versions, expected / actual behavior) |
After the latest release of VSCode, my debugging workflow has broken down due to the new feature "No‐Config Debugging". I would like to disable this feature as I use the pip installed and managed debugpy.
(My workflow is on a cluster managed by Slurm and VSCode's debugpy does not work well. Further, I use Anaconda to manage my python env)
The text was updated successfully, but these errors were encountered: