Conda

Author: Neil Jianzhang Ni

Date: 8-June-2024

I prepared a base Python environment for every user. Contact me to add you to the user group if you need it.

Then add the following content to your .bashrc file and restart your terminal

 >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !! 
__conda_setup="$('/opt/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then 
    eval "$__conda_setup"
else 
    if [ -f "/opt/miniconda3/etc/profile.d/conda.sh" ]; then
        . "/opt/miniconda3/etc/profile.d/conda.sh" 
    else 
        export PATH="/opt/miniconda3/bin:$PATH" 
    fi
fi 
unset __conda_setup 
# <<< conda initialize <<<