您的位置:首页 > 编程语言 > Python开发

VS Code 中Python 开发环境配置(Settings.json、launch.json、Tasks.json)

2017-10-20 09:54 645 查看
Configuring Visual Studio Code for Python Development

配置Tasks.json

mac快捷键:cmd+shift+b

官方指导文档

我的 tasks.json python配置

{
// See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "Python",
"type": "shell",
"command": "${workspaceRoot}/env/bin/python3.5",
"args": [
"${file}"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}


Python 自动提示

自动提示实在是太慢了,我使用了dash,安装了插件,方便了太多了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python VSCode