【Windows系统】VScode中激活虚环境提示“Your shell has not been properly configured to use ‘conda activate‘.”

问题展现

  • windows中安装了anaconda
  • anaconda中配置了两个环境,如下[图1]
    在这里插入图片描述
  • 在Vscode中得terminal无法切换环境(无法从base切换到paddle_envs),但是可以使用conda命令
  • 以为是环境变量出了问题, 遂在环境变量中增加了paddle_envs的路径,如下[图2], 重启terminal,仍旧无法切换环境
    在这里插入图片描述
  • 根据conda activate shell提示,输入conda init powershell后,重启terminal
  • terminal中出现报错如[图3] , 并且在输入conda activate时,出现问题如[图4]
    图3
    图4

问题解决

此解决方案参照博客: https://blog.csdn.net/cskywit/article/details/99202520

  • 通过Win10开始菜单进入PowerShell(管理员),输入命令set-ExecutionPolicy RemoteSigned,结果如下[图5]
    在这里插入图片描述

问题分析

问题出现在输入conda init powershell后, 图3所示的错误,无法运行脚本 profile.ps1

ps1脚本文件是Powershell写好的脚本文件,Windows系统默认不允许执行.ps1文件,所以显然Windows系统阻碍了conda init powershell命令的执行结果. 需要解决这个问题,需要认为地去修改windows中的执行策略, 所以执行命令set-ExecutionPolicy RemoteSigned,修改系统安全性,即可以运行.ps1脚本文件, 不好的地方就是可能会导致系统的安全性降低. 如果有其他可行方案希望交流互相学习.

更多关于.ps1脚本文件的介绍,参考:http://www.splaybow.com/post/powershellexecps1.html

你可能感兴趣的:(vscode,vscode,windows)