Error:
IMPORTANT: You may need to close and restart your shell after running 'conda init'.
解决方案,直接上配置文件:
"terminal.integrated.profiles.windows": { "PowerShell": { "source": "PowerShell", "args": ["-nolog"] }, "GitBash": { "path": ["E:\\dev\\envs\\Git\\bin\\bash.exe"], "args": ["--login", "-i"] } }, "terminal.integrated.defaultProfile.windows": "GitBash",
修改的地方在:GitBash
配置项中的 args
参数中,添加启动参数 --login
这一个即可起作用了!最终效果:
参考链接:https://achuan-2.github.io/posts/be43.html