gpt4 book ai didi

python - 使用 Python 在 Visual Studio Code 中调试不起作用

转载 作者:行者123 更新时间:2023-12-01 01:55:09 26 4
gpt4 key购买 nike

我对 python 还很陌生,到目前为止我一直在使用 Komodo 作为我的解释器。我决定尝试更强大的东西,因此我安装了 Visual Studio Code 版本 1.23.1 并运行 Python 3.6.4。当我运行基本脚本时,它运行正常,但我注意到在调试器窗口中没有出现任何变量,实际上什么也没有出现。不确定我做错了什么。调试设置为 DEBUE Python:当前文件。

最佳答案

默认情况下,VSCode 的调试器将执行您的文件,直到遇到断点(或异常)或程序退出。要更改此行为,请将 "stopOnEntry": true 设置为 launch.json 配置,如下所示:

"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
// Add this line
"stopOnEntry": true
},
// other configurations
...
}

关于python - 使用 Python 在 Visual Studio Code 中调试不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50294025/

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