Windows PowerShell初始化conda后(init conda)速度变慢,如何关闭?

方法1

conda config --set auto_activate_base false

结果

Windows PowerShell 在开启后不会激活conda (base)环境,但开启速度仍然比原先很慢(>1000ms)。

方法2

C:\Users\admin\Documents\WindowsPowerShell 文件夹下打开 profile.ps1

内容如下:

#region conda initialize
# !! Contents within this block are managed by 'conda init' !!
(& "F:\Anaconda\Scripts\conda.exe" "shell.powershell" "hook") | Out-String | Invoke-Expression
#endregion

(& "F:\Anaconda\Scripts\conda.exe" "shell.powershell" "hook")注释掉

如下:

#region conda initialize
# !! Contents within this block are managed by 'conda init' !!
#(& "F:\Anaconda\Scripts\conda.exe" "shell.powershell" "hook") | Out-String | Invoke-Expression
#endregion

注意: C:\Users\admin\Documents\WindowsPowerShellprofile.ps1 可以是其他路径或文件名。

结果

Windows PowerShell 恢复正常启动速度。

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