From 8e7a88e49413f11e14b54a6a8821a2ba4d971dd4 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Wed, 13 Dec 2023 21:30:16 -0500 Subject: [PATCH] Add new conda path --- .bashrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.bashrc b/.bashrc index 2e47181..6185ecc 100644 --- a/.bashrc +++ b/.bashrc @@ -16,14 +16,14 @@ fi ############################################################################### # >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! -__conda_setup="$('/home/tyler/code/miniconda/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" +__conda_setup="$('/home/tyler/.conda-install/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else - if [ -f "/home/tyler/code/miniconda/etc/profile.d/conda.sh" ]; then - . "/home/tyler/code/miniconda/etc/profile.d/conda.sh" + if [ -f "/home/tyler/.conda-install/etc/profile.d/conda.sh" ]; then + . "/home/tyler/.conda-install/etc/profile.d/conda.sh" else - export PATH="/home/tyler/code/miniconda/bin:$PATH" + export PATH="/home/tyler/.conda-install/bin:$PATH" fi fi unset __conda_setup