0


Pycharm中Terminal用不了conda指令解决办法

我的报错信息:

Import-Module : 无法加载文件 D:\program\anaconda\shell\condabin\Conda.psm1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwl ink/?LinkID=135170 中的 about_Execution_Policies。 所在位置 行:7 字符: 1 + Import-Module "$Env:_CONDA_ROOT\shell\condabin\Conda.psm1" -ArgumentL ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : SecurityError: (:) [Import-Module],PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess,Microsoft.PowerShell.Commands.ImportModuleCommand conda : 无法将“conda”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。 所在位置 行:9 字符: 1 + conda activate base + ~~~~~ + CategoryInfo : ObjectNotFound: (conda:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException Failed to activate conda environment. Please open Anaconda prompt, and run D:\program\anaconda\condabin\conda.bat init powershell there.

解决方案:

第一步.:在 Windows 下用管理员身份运行 Set-ExecutionPolicy RemoteSigned 命令:

  1. 在开始菜单中,搜索并打开 PowerShell。
  2. 右键单击 PowerShell 图标,然后选择“以管理员身份运行”。
  3. 在 PowerShell 窗口中,输入Set-ExecutionPolicy RemoteSigned 命令,然后按 Enter

第二步: 在 PowerShell 中设置 Anaconda 环境变量:

    在 Anaconda Prompt 窗口中输入conda init powershell,之后重启即可。
标签: pycharm conda python

本文转载自: https://blog.csdn.net/weixin_43560852/article/details/128403090
版权归原作者 努力进步的小梁 所有, 如有侵权,请联系我们删除。

“Pycharm中Terminal用不了conda指令解决办法”的评论:

还没有评论