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,python,ide)