Revision 45085fc505dc80aeebf23dc50e93915f29cb3e37 authored by pyxieloustar on 01 December 2022, 22:18:08 UTC, committed by pyxieloustar on 01 December 2022, 22:20:24 UTC
1 parent ad8443b
Raw File
_activate_current_env.sh
# This script should never be called directly, only sourced:

#     source _activate_current_env.sh

# Initialize the current shell
eval "$(`which micromamba` shell hook --shell=bash)"

# For robustness, try all possible activate commands.
conda activate "${ENV_NAME}" 2>/dev/null \
  || mamba activate "${ENV_NAME}" 2>/dev/null \
  || micromamba activate "${ENV_NAME}"
back to top