vscode常用工具
Posted Arrow
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode常用工具相关的知识,希望对你有一定的参考价值。
-
显示所有函数列表:
- Shift+Ctl+O
- 或点左下角【大纲】查看
-
设置conda环境
- Ctrl+P, 搜索: > select interpreter
-
设置当前工作目录,以让代码中可以使用相对路径
- 在launch.json中添加"cwd"
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "$file",
"console": "integratedTerminal",
"cwd":"$workspaceFolder/mmyolo", #设置当前工作目录
"justMyCode": true
]
- 添加运行参数
- 前提:代码中设置了arg paser
- 例子:# python tools/misc/download_dataset.py --dataset-name balloon --save-dir data --unzip
- 在launch.json中添加 “args”:
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "$file",
"console": "integratedTerminal",
"cwd":"$workspaceFolder/mmyolo",
"args":[
"--dataset-name", "balloon",
"--save-dir", "data",
"--unzip"
],
"justMyCode": true
]
以上是关于vscode常用工具的主要内容,如果未能解决你的问题,请参考以下文章