Visual Studio Code配置 Python 开发环境
1、安装Python https://www.python.org/
2、安装VSCodehttps://code.visualstudio.com/Download
3、在VSCode上安装Python Ctrl+P 调出控制台,敲ext install Python
4、Ctrl+Shift+P输入task,选中others,新建task.json文件,修改如下:
{
// See http://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "python",
"isShellCommand": true,
"args": ["${file}"],
"showOutput": "always"
}
如果print输出中文出现乱码可以在配置文件task.json加上下列代码
1 2 3 4 5 | "options" : { "env" :{ "PYTHONIOENCODING" : "UTF-8" } }, |
5、Ctrl+shift+B即可自动运行文件