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

本文介绍如何通过修改Windows PowerShell的profile.ps1来降低启动时Conda(base)环境的激活时间,从加快PowerShell启动速度。方法包括设置auto_activate_base为false和注释掉conda初始化脚本。
摘要由CSDN通过智能技术生成

方法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 恢复正常启动速度。

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值