我是python的新手(以及一般的编码)。我想请一些帮助在VS Code上设置python。我曾尝试过几个指南,但没有一个真的有用。
以下内容已下载:
答案 0 :(得分:3)
1)安装VS代码
2)转到视图>命令调色板
3)键入ext install并单击Install Extensions
4)搜索Python并安装它
5)重新加载VS
6)开始编码
答案 1 :(得分:1)
这对我有用:
{
"python.linting.pylintEnabled": false,
"python.pythonPath": "python.exe"
}
{
"version": "2.0.0"
}
{
"version": "2.0.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
"program": "${file}",
"cwd": "${workspaceRoot}",
"console": "internalConsole",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
}
]
}
您可以将"program": "${file}",
替换为"program": "${workspaceRoot}/main.py",
以运行您的主文件,无论您选择了哪个文件,但我发现这会使语法错误等错误有时无法正确显示。
CTRL + SHIFT + D
BREAKPOINTS
面板中,点击Uncaught Exceptions
enter image description here