diff --git a/bin/includes/Databases b/bin/includes/Databases index d75a6af..e44a921 100755 --- a/bin/includes/Databases +++ b/bin/includes/Databases @@ -11,7 +11,7 @@ if [[ $PATH != *${HELPER_NAME}* ]]; then # If helper env is not in your path (i. if ! conda activate "${HELPER_NAME}"; then # If exit statement is not 0, i.e. helper conda env hasn't been installed yet, do... echo -e "\tInstalling Jovian helper environment..." - conda env create -f ${PATH_JOVIAN_HELPER_YAML} # Create the env from the specified yaml file + mamba env create -f ${PATH_JOVIAN_HELPER_YAML} # Create the env from the specified yaml file set -o allexport conda activate "${HELPER_NAME}" set +o allexport @@ -24,4 +24,4 @@ bash bin/includes/Databases_installer # The rest of the code is performed in the helper env, not in the master env. conda deactivate # conda deactivate # if you need to go back to the master_env. N.B. Wrap this command with set +u and set -u when working in strict bash mode. -echo -e "DONE" \ No newline at end of file +echo -e "DONE"