Fix mm env creation

This commit is contained in:
Mr Finchum 2025-08-14 17:31:08 +02:00
parent 771ff00b04
commit 0297935c92
Signed by: CodeByMrFinchum
GPG key ID: C06071E8082FFA0B

View file

@ -18,7 +18,8 @@ fi
echo "Creating micromamba environment 'ol' with OptimaLab35..." echo "Creating micromamba environment 'ol' with OptimaLab35..."
eval "$("$MAMBA_DIR"/bin/micromamba shell hook -s bash)" eval "$("$MAMBA_DIR"/bin/micromamba shell hook -s bash)"
micromamba create -y -n ol pip OptimaLab35 micromamba create -y -n ol pip # First creating the mm env.
micromamba run -n ol pip install OptimaLab35 # Then installing OL35, mm dosnt like to create env with OL35
echo "Creating config directory..." echo "Creating config directory..."
mkdir -p "$CONFIG_DIR" mkdir -p "$CONFIG_DIR"