解决 Conda 拖慢 shell 启动的问题
执行 conda init your_shell_name
之后,指定 shell 的启动脚本会被加入 conda 的配置,使得每次启动时都会花费时间激活 (base) 环境。比如对于 Powershell,被修改的是 profile.ps1
;对于 zsh,被修改的是 .zshrc
。但是大部分时候我们并不需要使用 conda,为了提高启动速度,我们可以采取以下两种方法之一【搬运自stackoverflow,不作翻译】
Be Free and Unafraid
执行 conda init your_shell_name
之后,指定 shell 的启动脚本会被加入 conda 的配置,使得每次启动时都会花费时间激活 (base) 环境。比如对于 Powershell,被修改的是 profile.ps1
;对于 zsh,被修改的是 .zshrc
。但是大部分时候我们并不需要使用 conda,为了提高启动速度,我们可以采取以下两种方法之一【搬运自stackoverflow,不作翻译】