Add Conda env deactivation to installer scripts

Avoids conflicts with existing Conda installations
This commit is contained in:
jllllll 2023-09-21 21:52:29 -05:00
parent 6bbfc40d10
commit cd1049eded
No known key found for this signature in database
GPG key ID: 7FCD00C417935797
10 changed files with 28 additions and 4 deletions

View file

@ -4,8 +4,8 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
if [[ "$(pwd)" =~ " " ]]; then echo This script relies on Miniconda which can not be silently installed under a path with spaces. && exit; fi
# deactivate existing env if needed
conda deactivate 2> /dev/null
# deactivate existing conda envs as needed to avoid conflicts
{ conda deactivate && conda deactivate && conda deactivate; } 2> /dev/null
# config
CONDA_ROOT_PREFIX="$(pwd)/installer_files/conda"