From 7914b080597bd7a34ccfcebcd2f370676e70fc4f Mon Sep 17 00:00:00 2001 From: paul-loedige <59517210+ploedige@users.noreply.github.com> Date: Wed, 22 May 2024 18:47:02 +0200 Subject: [PATCH] moved conda bin to end of Path to avoid breaking default python path --- config.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.org b/config.org index f64d60e..865ca3c 100644 --- a/config.org +++ b/config.org @@ -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