Compare commits

...

2 Commits

Author SHA1 Message Date
Tyler Perkins 819fa37434
remove vifminfo 2023-12-13 21:31:03 -05:00
Tyler Perkins 8e7a88e494
Add new conda path 2023-12-13 21:30:16 -05:00
2 changed files with 4 additions and 5 deletions

View File

@ -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

File diff suppressed because one or more lines are too long