Okay, last thing to try before I’m out of ideas:
At the end of your .bash_rc, you have:
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/g/data/w42/dr6273/apps/conda/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/g/data/w42/dr6273/apps/conda/etc/profile.d/conda.sh" ]; then
. "/g/data/w42/dr6273/apps/conda/etc/profile.d/conda.sh"
else
export PATH="/g/data/w42/dr6273/apps/conda/bin:$PATH"
fi
fi
unset __conda_setup
Can you change this to:
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/conda/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/opt/conda/etc/profile.d/conda.sh" ]; then
. "/opt/conda/etc/profile.d/conda.sh"
else
export PATH="/opt/conda/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
It looks like this could also be mangling your conda path. I would keep all the aliases commented out when trying this, just to be safe.
If that doesn’t work, I’ll see if I can find someone else who might have debugged something similar before.