如何设置使用 VS Code 的调试器调试 Python 程序的工作目录?
使用 Visual Studio Code 调试 Python 程序时 ( VS Code),指定工作目录对于确保脚本正确运行至关重要。
要在启动配置文件 (launch.json) 中设置工作目录,请按照以下步骤操作:
打开 launch.json 文件:
设置“cwd”变量:
"cwd": "${fileDirname}"
考虑“目的”选项(可选):
"purpose": ["debug-in-terminal"]
保存你的 launch.json 文件:
launch.json 配置示例:
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Current File (Integrated Terminal)",
"request": "launch",
"type": "python",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${fileDirname}",
"purpose": ["debug-in-terminal"]
}
]
}
注意: launch.json 文件控制项目的调试设置。如果您没有,请通过单击调试视图中的 Configure 齿轮图标来创建它。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3