本文最后更新于 128 天前,如过您尝试失败,不出意外应该是出意外了。
How to make VSCode always run main.py
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}