码迷,mamicode.com
首页 > 编程语言 > 详细

Vs code 下设置python tasks.json

时间:2019-12-16 22:32:23      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:shel   panel   man   enc   type   vs code   https   reveal   pre   

{
	// See https://go.microsoft.com/fwlink/?LinkId=733558
	// for the documentation about the tasks.json format
	"version": "2.0.0",
	"tasks": [
		{
			"label": "python",
			"type": "shell",
			"command": "python",
			"args": [
				"${file}"
			],
			"presentation": {
				"reveal": "always",
				"panel": "shared"
			},
			"group": {
				"kind": "build",
				"isDefault": true
			},
			"options": {
				"env": {
					"PYTHONIOENCODING": "UTF-8"
				}
			}
		}
	]
}

  

Vs code 下设置python tasks.json

标签:shel   panel   man   enc   type   vs code   https   reveal   pre   

原文地址:https://www.cnblogs.com/Areas/p/12051520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!