1. 程式人生 > >VSCode 中文亂碼

VSCode 中文亂碼

vscode 選單欄:  檔案 >> 首選項 >> 設定

搜尋:

        "files.autoGuessEncoding": false,

 改為:

        "files.autoGuessEncoding": true,

修改task.json,新增option那一段:

{
    "version": "0.1.0",
    "command": "python",
    "isShellCommand": true,
    "args": ["${file}"],
    "showOutput": "always",
    "options": {
        "env":{
            "PYTHONIOENCODING": "UTF-8"
          }
      }
}