win10下配置anaconda:在powershell中系列报错的解决方法

下载与安装过程略

一、安装之后,手动添加环境变量:Path:(自己的目录)

D:\Programs\Anaconda3

D:\Programs\Anaconda3\Scripts

D:\Programs\Anaconda3\Library\bin

 

二、环境变量准确设置后,powershell不能调用python指令,跳出ms store的解决:

删掉Path中的:%USERPROFILE%\AppData\Local\Microsoft\WindowsApps

 

三、conda创建环境之后,不能使用conda activate激活环境,显示:

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. If using 'conda activate' from a batch script, change your invocation to 'CALL conda.bat activate'. To initialize your shell, run $ conda init Currently supported shells are: - bash - cmd.exe - fish - tcsh - xonsh - zsh - powershell See 'conda init --help' for more information and options.

解决方法:conda init powershell

然后重启powershell

 

四、重启powershell后报错:

无法加载文件 ******.ps1,因为在此系统中禁止执行脚本。有关详细信息,请参阅 "get-help about_signing"。 所在位置 行:1 字符: 17 + E:\Test\test.ps1 <<<<     + CategoryInfo          : NotSpecified: (:) [], PSSecurityException     + FullyQualifiedErrorId : RuntimeException

解决方法:更改策略组:

若要在本地计算机上运行您编写的未签名脚本和来自其他用户的签名脚本,请使用以下命令将计算机上的执行策略更改为 RemoteSigned:

 set-executionpolicy remotesigned

执行策略可以防止您执行不信任的脚本。更改执行策略可能会使您面临 about_Execution_Policies 帮助主题中所述的安全风险。是否要更改执行策略? [Y] 是(Y)  [N] 否(N)  [S] 挂起(S)  [?] 帮助 (默认值为“Y”): y

 

你可能感兴趣的:(软件使用,anaconda,报错解决,配置)