windows10下VScode配置python

在VScode配置python只要有以下几步:

  1. 安装python
  2. 安装python代码分析工具(pep8、flake8、pylint等)
  3. 安装代码自动格式化工具
  4. 安装VScode自带的python插件
  • 安装python
  • python官网下载可执行文件(.exe)
  • 我的安装路径是:E:/software/python
    接下来将python的安装路径配置到VScode的调试配置文件launch.json中
{
                    "name": "Python",
                    "type": "python",
                    "request": "launch",
                    "stopOnEntry": false,
                    //"pythonPath": "E:/software/python",
                    "python.pythonPath": "E:/software/python",
                    "program": "${file}",
                    "cwd": "${workspaceRoot}",
                    "env": {},
                    "envFile": "${workspaceRoot}/.env",
                    "debugOptions": [
                        "WaitOnAbnormalExit",
                        "WaitOnNormalExit",
                        "RedirectOutput"
                    ]
                },

注意python的路径配置前面一定要加python.楼主因为这个被提示路径无效。

  • 安装代码分析工具
  • win 10 下搜索cmd打开命令提示符,如果你的python没有安装在默认路径的话,你可以和我一样,通过cd /d e:(我的python被我安装在了e盘,所以我的目录更改到了e盘)

windows10下VScode配置python_第1张图片
接着更换到python的安装目录下:
windows10下VScode配置python_第2张图片
在python的安装目录下,我们继续安装代码分析工具,这里我选择的是flake8,通过pip install flake8安装flake8。
windows10下VScode配置python_第3张图片
打开VScode下的setting.json将安装的flake8路径配置上去:

{
   // "python.linting.pylintEnabled": true,
   // "python.linting.enabled": true


       //python代码规范提示
       "python.linting.pylintEnabled": false, //这一行是为了禁用python插件建议我们用的pylint
       "python.linting.enabled": true,
       "python.linting.flake8Path": "E:/software/python",
       "python.linting.flake8Enabled": true,
       "python.linting.flake8Args": [
           "--max-line-length=90"
    ],
    "python.pythonPath": "E:\\software\\python\\python.exe",
}
  • 安装代码自动化格式
  • 在python的安装目录下,我们安装代码自动化格式工具yapf
    ,在windows的终端下,我们输入:pip install yapf安装yapf
    windows10下VScode配置python_第4张图片
    在编译器的setting.json中配置yapf路径
   //python代码自动规范
    "python.formatting.provider": "yapf",
    "python.formatting.yapfPath": "E:/software/python/yapf",
    "python.formatting.yapfArgs": [],
    "editor.formatOnSave": true,
    "editor.renderIndentGuides": false,

    "python.pythonPath": "E:\\software\\python\\python.exe",
  • 安装VScode自带的python插件
  • 在VScode左侧的扩展商店中搜索python,并选择第一个安装。
    windows10下VScode配置python_第5张图片
    安装配置python插件后,在VScode的工作区新建一个.py文件,我们就能在VScode里,编写python代码啦。

你可能感兴趣的:(CV)