Python vscode使用code-runner 调试代码

Posted 依然范儿特西

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python vscode使用code-runner 调试代码相关的知识,希望对你有一定的参考价值。

插件名称: code-runner

插件设置:


"code-runner.executorMap": {     
        "python" : "set PYTHONIOENCODING=utf8 && python",
        "php":"php",
        "node": "node",
        "java": "cd $dir && javac -encoding utf-8 $fileName && java $fileNameWithoutExt",
        "go":"go run",
        "javascript":"node",
        "perl": "perl",
        "ruby": "C:\\\\Ruby23-x64\\\\bin\\\\ruby.exe",
        "html": "\\"C:\\\\Users\\\\Administrator\\\\AppData\\\\Local\\\\Google\\\\Chrome\\\\Application\\\\chrome.exe\\"",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
    },
   

其中 python 哪一行: set PYTHONIOENCODING=utf8 && python 为了防止运行处输出位置 乱码设置

cool!

我在node环境也使用了这个插件, 注意安装完,要重启电脑!!!!,不然一直不生效,MMP

以上是关于Python vscode使用code-runner 调试代码的主要内容,如果未能解决你的问题,请参考以下文章

如何在 VSCode Ipython 中设置 cwd?

vs code运行python导入上级目录模块问题

VSCode中文乱码

vscode cpp 输出中文 乱码

vscode cpp 输出中文 乱码

在最新的VScode中运行Minitest - 显示Ansi颜色代码