VS Code Python调试器“超时,等待调试对象生成”

时间:2019-11-23 21:48:30

标签: python debugging visual-studio-code timeout

我的调试器甚至没有开始运行我的代码。我按F5键,打开“调试”选项卡,表明它正在加载,过一会儿,它在弹出窗口中显示“会话1超时,等待调试对象生成”。我使用的是VS Code版本1.40.1,我已经设置了虚拟环境,并且调试器可以正常工作,在断点处停止并更改屏幕底部蓝色条的颜色。使用open()函数时出现问题,但调试器不适用于任何文件。 我已经看到并尝试了herehere提供的解决方案。除了标准的Python扩展程序外,我不使用Conda,Jupyter或任何扩展程序。 代码:

import os
def fib(n):
    if not os.path.exists("Fibfile.txt"):
        with open("Fibfile.txt", "w") as file:
            file.write("1\n2\n")
    with open("Fibfile.txt", "r") as file:
        contents = file.readlines()
        data = []
        for item in contents:
            # removes newline
            data.append(int(item[:-1]))
    with open("Fibfile.txt", "a") as file:
        if n <= len(data):
            return
        else:
            while n > len(data):
                data.append(data[-2]+data[-1])
                file.write(f"{data[-1]}\n")
fib(100)

我的launch.json:

{
// 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": "Python: Arquivo Atual",
        "type": "python",
        "request": "launch",
        "program": "${file}",
        "console": "integratedTerminal"
    }
]
}

1 个答案:

答案 0 :(得分:1)

我的解决方案是降级Visual Studio Code的Python扩展。 您可以从GitHub release下载。 PTVSD版本2019.10.44104适用于VS Code 1.40.2。 未检查的扩展程序:自动更新/自动检查更新 并从VSIX手动安装。

更新:较新的VS Code 1.41版本已解决此问题。