vscode 环境配置

必备插件

vscode 环境配置_第1张图片
vscode 环境配置_第2张图片

配置调试

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "externalTerminal",
            "justMyCode": true,
            "args": ["--port", "1593"]
        }
    ]
}

你可能感兴趣的:(vscode,数据库,ide)