My Prompt now takes a bit longer to load in and I was wondering if conda/Anaconda could be to blame?
Here’s my ~/.bashrc file:
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fi
unset rc
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/nmcivor/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/nmcivor/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/nmcivor/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/nmcivor/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
Maybe that’s just a side effect of changing the default state to having base
deactivated?
(so that I have to run conda activate base
to use conda and thus jupyter notebooks
)