美文网首页
vscode配置直接运行Python

vscode配置直接运行Python

作者: 碎冰op | 来源:发表于2017-08-05 13:33 被阅读280次

    在搞不定Pycharm界面字体配置之前我的审美让我选择拒绝...
    vscode的语法高亮和默认字体都太舒服了,Pycharm暂时只会改编辑器的字体,没用。

    vscode都2.0.0了,网上很多0.1.0的配置不起作用了,现在应该如下配置:

    image.png
    {
        // See https://go.microsoft.com/fwlink/?LinkId=733558
        // for the documentation about the tasks.json format
        "version": "2.0.0",
        "tasks": [
            {
                "taskName": "build",
                "command": "python",
                "type": "shell",
                "args": ["${file}"]
            }
        ]
    }
    

    然后Crtl+Shift+B,出现build,回车运行当前程序。

    还是有点麻烦,好在不是出现cmd来显示结果,比vs2017好。
    可惜作为编辑器没法看内建函数等的源码。

    相关文章

      网友评论

          本文标题:vscode配置直接运行Python

          本文链接:https://www.haomeiwen.com/subject/kbwilxtx.html