Visual Studio Code搭建python开发环境

python安装(Mac下自带)

Visual Studio Code 安装

Visual Studio Code 安装python插件

command + P 打开命令输入界面

输入ext install python 安装python插件

安装配置flake8(自动错误检查工具)

python环境中安装flake8    pip install flake8   

用户-首选项-工作区设置中修改配置(用户设置也可以)  "python.linting.flake8Enabled": true

安装配置yapf(自动格式化代码工具)

python环境安装yapf    pip install yapf

用户-首选项-工作区设置中修改配置(用户设置也可以)  "python.formatting.provider": "yapf"

Command + shift + F 格式化代码

配置Command + Shift + B 运行代码

打开或新建一个python源文件,按下快捷键Ctrl+Shift+B运行,VSC会提示No task runner configured.,点击“Configure Task Runner”,选择“Others”,输入以下内容并保存:

{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "0.1.0", "command": "${workspaceRoot}/venv/bin/python", "isShellCommand": true, "args": ["${file}"], "showOutput": "always" }

配置vitualenv运行环境

用户-首选项-工作区设置中修改配置(用户设置也可以)"python.pythonPath": "${workspaceRoot}/venv/bin/python"

安装Linting(代码格式检查工具)

python环境中安装linting    pip install pylint

安装完python插件后pylint是默认开启的

配置显示空格字符

用户-首选项-工作区设置中修改配置(用户设置也可以)"editor.renderWhitespace": "all"

配置忽略非代码文件显示

用户-首选项-工作区设置中修改配置(用户设置也可以)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgdxdg.html