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,6 +4,9 @@ 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 conda envs as needed to avoid conflicts
{ conda deactivate && conda deactivate && conda deactivate; } 2> /dev/null
# M Series or Intel
OS_ARCH=$(uname -m)
case "${OS_ARCH}" in