方法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\WindowsPowerShell和profile.ps1 可以是其他路径或文件名。
结果
Windows PowerShell 恢复正常启动速度。