作者:留香1980 | 来源:互联网 | 2023-08-10 14:26
我正在用Python编写我的第一个库,在开发时,我希望VS Code中的运行代码按钮始终从根目录中的main.py文件开始运行代码。我向launch.json添加了新配置,但是似乎无法使用此配置作为默认配置。我该怎么做/
您可以使用密钥launch.json
的以下设置来修改program
。您可能需要将program
指向要执行的文件。在以下情况下,main.py
仅存在于我的工作区文件夹中。您可以根据需要进行修改。
{
// 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"
}
]
}
,
您需要将'launch.json
'放在工作空间内的'.vscode
'文件夹下。然后Run
> Run Without Debugging
(Windows CTRL+F5
上的快捷键)
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information,"console": "integratedTerminal"
}
]
}