moved conda bin to end of Path to avoid breaking default python path
This commit is contained in:
+2
-2
@@ -3545,7 +3545,7 @@ fi
|
|||||||
add to path
|
add to path
|
||||||
#+begin_src shell :tangle ~/.path.sh
|
#+begin_src shell :tangle ~/.path.sh
|
||||||
source /etc/profile.d/conda.sh
|
source /etc/profile.d/conda.sh
|
||||||
export PATH="/opt/miniconda3/bin:$PATH"
|
export PATH="$PATH:/opt/miniconda3/bin"
|
||||||
#+end_src
|
#+end_src
|
||||||
** ZSH special settings
|
** ZSH special settings
|
||||||
#+begin_src shell :tangle ~/.zshrc
|
#+begin_src shell :tangle ~/.zshrc
|
||||||
@@ -3558,7 +3558,7 @@ else
|
|||||||
if [ -f "/opt/miniconda3/etc/profile.d/conda.sh" ]; then
|
if [ -f "/opt/miniconda3/etc/profile.d/conda.sh" ]; then
|
||||||
. "/opt/miniconda3/etc/profile.d/conda.sh"
|
. "/opt/miniconda3/etc/profile.d/conda.sh"
|
||||||
else
|
else
|
||||||
export PATH="/opt/miniconda3/bin:$PATH"
|
export PATH="$PATH:/opt/miniconda3/bin"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
unset __conda_setup
|
unset __conda_setup
|
||||||
|
|||||||
Reference in New Issue
Block a user