VSCODE配置

1安装官方插件

2-VSCODE-相关概念

vs code 单次运行一个脚本视为一个task,配置文件为tasks.json。整个文件和多个文件夹视为workspace,配置文件为setting.json,调试环境配置为launch.json。这些文件需要手动编辑,编辑好后会替代默认配置生效。

3-setting-文件配置

1.打开一个 .py文件,然后点状态栏右下角 python

2.再点图中的python 语言基础设置

3.修改工作空间settings.json 配置文件中的”python.pythonPath”为自己的解释器路径,工作空间配置可以代替用户配置,用户配置可以代替默认配置

4.配置 pylint 路径,因为默认 pylint 检查是开启的

这里写图片描述

5-配置运行参数-配置tasks-json-运行-python-脚本

1.在打开的 py 文件中按 command+shift+B (windows 系统上 command 是 ctrl键)运行,点击配置生成任务

2.使用默认模版生成任务配置文件 tasks.json

3.点选 others

4.修改 tasks.py

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{  
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "python",
"type": "shell",
"command": "C:/Users/yanta/AppData/Local/Programs/Python/Python36/python",
"args": [
"${file}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]

}

6-调试-单步运行-配置-launch-json

前面都配置正常的话,此处不需要配置也可以正常运行,若不能正常运行可以尝试重启vscode再试,如果需要自定义调试配置,比如远程调试之类的话,可以添加 launch.json 并且修改其中相应的配置参数:
1.点左侧的甲虫图标,然后点左上角没有配置,再点添加配置即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"version": "0.2.0",  
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": false,
//"pythonPath": "C:/Python27/python",
"pythonPath": "C:/Users/yanta/AppData/Local/Programs/Python/Python36/python",
"program": "${file}",
"cwd": "${workspaceRoot}",
"env": {},
"envFile": "${workspaceRoot}/.env",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
},

2.在行号的左侧单击即可设置断点,点左上角调试两个字右侧的绿色按钮,即可开始调试,上方会出现调试面板,有单步,继续等功能


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!