PowerShell报错:无法加载文件C:\Users\server\Documents\windowsPowerShell\profile.ps1...

前言

在安装过Anaconda后使用PowerShell报错:
PowerShell报错:无法加载文件C:\Users\server\Documents\windowsPowerShell\profile.ps1..._第1张图片

报错原因

  • PowerShell默认禁止运行脚本,但是因为安装Anaconda后再启动PowerShell时需要运行脚本,所以会报错。
  • 可以通过在PowerShell中执行 get-ExecutionPolicy 语句验证这点,如图:
    PowerShell报错:无法加载文件C:\Users\server\Documents\windowsPowerShell\profile.ps1..._第2张图片

表示在PowerShell中运行脚本是禁止的

解决方案(步骤)

  1. “以管理员身份运行”PowerShell,如图:
    PowerShell报错:无法加载文件C:\Users\server\Documents\windowsPowerShell\profile.ps1..._第3张图片
  2. 在PowerShell中执行 set-ExecutionPolicy RemoteSigned,然后输入 Y,如图:
    PowerShell报错:无法加载文件C:\Users\server\Documents\windowsPowerShell\profile.ps1..._第4张图片
  3. 之后再运行PowerShell即可恢复正常,如图:
    PowerShell报错:无法加载文件C:\Users\server\Documents\windowsPowerShell\profile.ps1..._第5张图片

你可能感兴趣的:(Error,Anaconda,Python,Anaconda,PowerShell)