VSCode code-runner Python 乱码解决办法

  1. 方法1

     "code-runner.executorMap": {
        "python":"export PYTHONIOENCODING=UTF-8 && $pythonPath $fullFileName"
    },
    
  2. 方法2

    "code-runner.executorMap": {
        "python":"cd $dir && $pythonPath $fullFileName"
    },
    "code-runner.runInTerminal": false,
    
posted @ 2018-05-22 10:47  Juworchey  阅读(2782)  评论(0编辑  收藏  举报