gpt4 book ai didi

python - 为什么 VSCode 不会在断点处停止调试?

转载 作者:行者123 更新时间:2023-12-05 08:13:07 25 4
gpt4 key购买 nike

所以,我知道之前有一篇关于此的帖子:Debugger Not Stopping at Breakpoints in VS Code for Python

但是,我在较新版本的 VSCode 上遇到了完全相同的问题。

我的设置:

  • Manjaro Linux
  • 官方 MS VSCode (1.55.2)
  • 添加了 Python 扩展,并且主要是默认设置(以下是我的 settings.json 与 python 相关的设置)
    "[python]": {
    "editor.detectIndentation": true,
    "editor.insertSpaces": true
    },
    "python.autoComplete.addBrackets": true,
    "python.linting.flake8Args": [
    "--ignore=F401,F841,E501,E305,E302"
    ],
    "python.linting.flake8Enabled": true,
    "python.venvPath": "/home/greg/git/code/python/venvs"
  • 这是我的 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: Debug Current File",
    "type": "python",
    "request": "launch",
    "program": "${file}",
    "console": "integratedTerminal",
    "stopOnEntry": true,
    "justMyCode": false
    }
    ]
    }

最佳答案

尝试:

  1. 从项目中删除 launch.json(将其保存在其他地方以备不时之需)
  2. 重启 VS Code
  3. 尝试调试。如果它提示您输入 launch.json,请使用默认值。

关于python - 为什么 VSCode 不会在断点处停止调试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67288150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com