Skip to content

Commit

Permalink
Replace conda with mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
Finn Larsen committed Jan 17, 2024
1 parent 081e88f commit 6e92495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ if test -f "$REQ_TXT";
then
echo "Making conda env"
echo "$ENV_NAME will be created"
conda env create -f "$REQ_TXT" --name $ENV_NAME
mamba env create -f "$REQ_TXT" --name $ENV_NAME
else
echo "environment.yml file cannot be found in the script folder"
exit 1
Expand Down Expand Up @@ -151,4 +151,4 @@ then
eval "$(conda shell.bash hook)"
conda activate $ENV_NAME
bash $CUSTOM_INSTALL_PATH -i $parameterI
fi
fi

0 comments on commit 6e92495

Please sign in to comment.