Vs code 下设置python tasks.json
{
// 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"
}
}
}
]
} 相关推荐
Greatemperor 2020-05-03
逆时针 2020-02-10
chunianyo 2020-01-02
lihaoxiang 2019-11-14
89463661 2019-11-01
guchengxinfen 2019-07-18
benbendy 2016-09-30
LiteHeaven 2019-07-01
freesky 2019-07-01
wlzjiayou 2019-06-30
chenhua 2019-06-28
Martnn 2019-06-27
ououlal 2010-12-20
83251242 2019-06-20
dxbjfu0 2019-06-20
哈嘿Blog 2018-01-12
sunnyishere 2012-04-20
Python探路者 2019-04-22