vscode配置python扩展插件,以及双环境配置

1、插件列表

vscode配置python扩展插件,以及双环境配置_第1张图片

2、setting.json文件配置

用户设置
{
    "window.zoomLevel": 0,
    "[python]": {},
    "workbench.colorTheme": "One Dark Pro",
    // By default, create file  username
    "fileheader.Author": "dabangba",
    // By default, update file  username.
    "fileheader.LastModifiedBy": "dawangba",
    "fileheader.tpl": "/*\r\n * @Author: {author} \r\n * @Date: {createTime} \r\n * @Last Modified by:   {lastModifiedBy} \r\n * @Last Modified time: {updateTime} \r\n */\r\n",
    "files.encoding": "utf8",
    "vsicons.dontShowNewVersionMessage": true,
    "python.jediEnabled": true,
    "python.autoComplete.addBrackets": true,
    "workbench.iconTheme": "material-icon-theme",
    "gitlens.advanced.messages": {
        "suppressShowKeyBindingsNotice": true
    },
    "workbench.sideBar.location": "left",
}

有的时候vscode 会没有了自动补全功能,这时候我们可以修改下面的值
"python.jediEnabled": true, 
将该值设置true 开启jedi 自动补全功能,不适用微软的自动补全
工作区设置
{
    "editor.fontFamily": "Consolas, 'Courier New', monospace",
    "python.linting.pylintEnabled": false,
    "python.pythonPath": "D:\\anaconda2\\python.exe",
    //"python.pythonPath": "D:\\anaconda3\\python.exe",
    "files.encoding": "utf8",
    "python.formatting.provider": "yapf",
}

3、task.json

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Python2.7.15",
            "type": "shell",
            "command": "D:/anaconda2/python.exe",
            //"command": "D:/anaconda3/python.exe",
            "args": [
                "${file}"
            ],
            "presentation": {
                "reveal": "always",
                "panel": "shared"
            },
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

这里面我使用了双环境,也就是2.7和3.6的
我们可以安装anaconda2,和anaconda3,这样win10电脑就可以使用两个环境了,
先装anaconda3 然后最后把它添加到系统路径当中,成为默认使用该版本
然后再安装anaconda2,不需要把它添加默认系统路径了
然后vscode中会自动识别出这两个版本,我们可以在vscode中任意切换版本库

这里写图片描述
点击Anaconda5.2.0
vscode配置python扩展插件,以及双环境配置_第2张图片
然后切换我们的版本库

默认右键 运行当前python文件可以使用python3的解释器 运行该文件,
使用ctrl+shift + B 可以使用python2的解释器 运行

你可能感兴趣的:(Python)