I was messing around earlier, trying to install Stable Diffusion on my machine, and it seems that I did something a bit "wider ranging" than I expected/intended.
When I launch Terminal, it now starts up Python and does something with it before giving me the usual zsh prompt. When I open a new Terminal window it displays "python" in the title bar for about half a second, then switches to displaying "zsh". Additionally my zsh prompt now has "(base)" in front of it:
Last login: Wed Sep 14 15:41:05 on ttys001
(base) nermal@Nermals-iMac ~ %
I'm not all that familiar with the internal workings of zsh, but it appears that this might be due to some stuff inside my ~/.zshrc:
Is it "safe" to remove this file? Or maybe rename it, so I can run it when I need to rather than having it run every time? I just don't want to break things further by diving in without checking
When I launch Terminal, it now starts up Python and does something with it before giving me the usual zsh prompt. When I open a new Terminal window it displays "python" in the title bar for about half a second, then switches to displaying "zsh". Additionally my zsh prompt now has "(base)" in front of it:
Last login: Wed Sep 14 15:41:05 on ttys001
(base) nermal@Nermals-iMac ~ %
I'm not all that familiar with the internal workings of zsh, but it appears that this might be due to some stuff inside my ~/.zshrc:
Code:
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/nermal/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/nermal/miniconda3/etc/profile.d/conda.sh" ]; then
. "/Users/nermal/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/nermal/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
Is it "safe" to remove this file? Or maybe rename it, so I can run it when I need to rather than having it run every time? I just don't want to break things further by diving in without checking