moved conda bin to end of Path to avoid breaking default python path

This commit is contained in:
paul-loedige
2024-05-22 18:47:02 +02:00
parent 36814dc53c
commit 7914b08059
+2 -2
View File
@@ -3545,7 +3545,7 @@ fi
add to path
#+begin_src shell :tangle ~/.path.sh
source /etc/profile.d/conda.sh
export PATH="/opt/miniconda3/bin:$PATH"
export PATH="$PATH:/opt/miniconda3/bin"
#+end_src
** ZSH special settings
#+begin_src shell :tangle ~/.zshrc
@@ -3558,7 +3558,7 @@ 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"
export PATH="$PATH:/opt/miniconda3/bin"
fi
fi
unset __conda_setup