Skip to content

Instantly share code, notes, and snippets.

@trungnt13
Created December 15, 2019 02:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trungnt13/226315a3aa0a02601a06cc0ff8640065 to your computer and use it in GitHub Desktop.
Save trungnt13/226315a3aa0a02601a06cc0ff8640065 to your computer and use it in GitHub Desktop.
Bash initialization for Miniconda
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/trung/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/trung/miniconda3/etc/profile.d/conda.sh" ]; then
. "/home/trung/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/home/trung/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment