powershell配置anaconda及解决【无法加载文件C:\Users\xxx\Documents\WindowsPowerShell\profile.ps1,因为在此系统上禁止运行脚本】的问题

配置

Anaconda安装教程
安装好Anaconda后,cmd中可以正常使用,但powershell中无法activate环境(在我电脑上的表现为activate后通过conda env list查看环境,可以看到并没有激活成功),需要打开powershell输入以下命令,然后重新打开powershell

conda init

解决问题

  • 无法加载文件C:\Users\xxx\Documents\WindowsPowerShell\profile.ps1,因为在此系统上禁止运行脚本

解决方案:win+x(或右键任务栏的Windows图标),选择以管理员身份运行powershell(Windows终端),输入以下命令,重新打开终端即可成功执行

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

你可能感兴趣的:(conda,anaconda3,powershell)