vscode终端输出中文乱码一种解决方法
在VSCode的 settings.json
中添加:
{
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": ["-NoExit", "-Command", "chcp 65001"]
}
},
"terminal.integrated.defaultProfile.windows": "PowerShell"
}