From 623308712f35600c69edd636eea6324a4847a3bd Mon Sep 17 00:00:00 2001 From: Mr Finchum Date: Mon, 3 Nov 2025 13:12:56 +0100 Subject: [PATCH 1/2] fixing on test branch --- OL35-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OL35-installer.sh b/OL35-installer.sh index a2a37d5..8426f82 100755 --- a/OL35-installer.sh +++ b/OL35-installer.sh @@ -24,7 +24,7 @@ else fi echo "Creating micromamba environment 'ol'..." -eval "$("$MAMBA_DIR"/bin/micromamba shell hook -s bash)" +eval "$("$MAMBA_DIR"/etc/profile.d/mamba.sh shell hook -s bash)" micromamba create -y -n ol pip # First creating the mm env. echo "Installing with OptimaLab35..." micromamba run -n ol pip install OptimaLab35 # Then installing OL35, mm dosnt like to create env with OL35 -- 2.49.1 From 7ae4af24e7983f626e0fbaaaf958cde9e79a20d2 Mon Sep 17 00:00:00 2001 From: Mr Finchum Date: Mon, 3 Nov 2025 13:20:09 +0100 Subject: [PATCH 2/2] setting python version to 3.12 --- OL35-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OL35-installer.sh b/OL35-installer.sh index 8426f82..b64cc17 100755 --- a/OL35-installer.sh +++ b/OL35-installer.sh @@ -25,7 +25,7 @@ fi echo "Creating micromamba environment 'ol'..." eval "$("$MAMBA_DIR"/etc/profile.d/mamba.sh shell hook -s bash)" -micromamba create -y -n ol pip # First creating the mm env. +micromamba create -y -n ol python=3.12 pip # First creating the mm env. echo "Installing with OptimaLab35..." micromamba run -n ol pip install OptimaLab35 # Then installing OL35, mm dosnt like to create env with OL35 -- 2.49.1