gpt4 book ai didi

python - 如何让VSCode始终运行main.py

转载 作者:行者123 更新时间:2023-12-01 06:42:14 27 4
gpt4 key购买 nike

我正在用 Python 编写我的第一个库,在开发时,我希望 VS Code 中的运行代码按钮始终从根目录中的 main.py 文件开始运行代码。我已向 launch.json 添加了新配置,但我似乎无法将此配置用作默认值。我该怎么做/

最佳答案

您需要将“launch.json”放在工作区的“.vscode”文件夹下。然后运行 > 运行而不调试(Windows 上的快捷键CTRL+F5)

enter image description here

启动.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: Current File",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal"
}
]
}

关于python - 如何让VSCode始终运行main.py,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59395036/

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