VSCode调试器突然停止(Python)

问题描述

今天安装Windows更新后,调试不再起作用。

这是我的活动调试配置:

"launch": {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
  {
    "name": "DEBUG CURR",
    "type": "python",
    "request": "launch",
    "program": "${file}",
    "console": "internalConsole",
    "justMyCode": false,
    "stopOnEntry": false,
  }...

当我启动调试器时,菜单会短暂弹出1-2秒。但随后它就关闭了。控制台中没有输出。

它不会在设置断点处停止。

有没有人有同样的问题?有解决方案吗?

谢谢!

系统设置


操作系统:Microsoft Windows10企业版(10.0.17763内部版本17763) VSCode版本1.64.0 Python版本:3.8.11(在活动的蟒蛇环境中)

已安装VSCode扩展:

  • Python(Microsoft)版本:v2022.0.1786462952
  • Pylance(Microsoft)版本:v2022.2.0

解决方案

VSCode的最新扩展有问题。

将python扩展降级到v2021.12.1559732655可解决此问题。

相关文章