VSCode 配置 Python开发环境

1.安装Python

2.安装VScode

3.在VScode 中安装Python插件

Ctrl + shift + X:Python
/按喜好安装,其实装第一个或者第二个就可以了

4.配置Python运行环境

ctrl + shift + B:
//配置task.json
{
    
    "version": "2.0.0",
    "tasks": [
        {
            "label": "python",
            "type": "shell",
            "command": "python",
            "args": [
                "${file}"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

 

你可能感兴趣的:(Python,IDE相关)