VSCode使用PowerShell启动Anaconda环境

VSCode设置

  • C:\Users**\AppData\Roaming\Code\User\settings.json VSC用户设置
  • “terminal.integrated.shell.windows" 设置Windows Terminal
  • “terminal.integrated.shellArgs.windows” 设置Windows系统下Terminal启动参数

PowerShell启动参数

{
	"terminal.integrated.shellArgs.windows": [
		"-NoExit",
		"Set-ExecutionPolicy ByPass Process;",
		"& 'D:\\Anaconda3\\shell\\condabin\\conda-hook.ps1';",
		"conda activate 'D:\\Anaconda3' "
	]
}
  • 顺序参考 Microsoft 文档

你可能感兴趣的:(设置)