Skip to content

Commit

Permalink
Use miniforge instead (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
topher200 authored Oct 7, 2024
1 parent 3a534f3 commit ba7cab3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions files/condarc
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@

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

if [ -f "/home/topher/miniforge3/etc/profile.d/mamba.sh" ]; then
. "/home/topher/miniforge3/etc/profile.d/mamba.sh"
fi
# <<< conda initialize <<<

0 comments on commit ba7cab3

Please sign in to comment.