将Windows下的vscode终端改成Anaconda的Command Prompt
菜单的“文件->首选项->设置”,搜索Terminal打开后添加如下内容{"explorer.confirmDelete": false,"editor.fontSize": 14,"terminal.integrated.profiles.windows": {"PowerShell -NoProfile": {"source": "PowerShell","args": [...
·
菜单的“文件->首选项->设置”,搜索Terminal
打开后添加如下内容
{
"explorer.confirmDelete": false,
"editor.fontSize": 14,
"terminal.integrated.profiles.windows": {
"PowerShell -NoProfile": {
"source": "PowerShell",
"args": [
"-NoProfile"
]
},
"Git-Bash": {
"path": "D:\\Program Files\\Git\\bin\\bash.exe",
"args": []
}
},
"terminal.integrated.defaultProfile.windows": "Command Prompt",
}
重启vscode 即可将终端替换为anaconda的终端
更多推荐
已为社区贡献1条内容
所有评论(0)