From bb44f2810fd7e570a41dcc368e16f1b9d4984872 Mon Sep 17 00:00:00 2001 From: Edouard Date: Fri, 7 Aug 2026 19:21:09 -0400 Subject: [PATCH 1/2] specify python version when creating the environment --- SPARK/install_spark.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SPARK/install_spark.sh b/SPARK/install_spark.sh index 53c742e..60c2a2c 100755 --- a/SPARK/install_spark.sh +++ b/SPARK/install_spark.sh @@ -35,7 +35,7 @@ if [[ -d "${VENV_DIR}" ]]; then echo "Existing virtual environment found." else echo "Creating virtual environment..." - python3 -m venv "${VENV_DIR}" + python3.11 -m venv "${VENV_DIR}" fi source "${VENV_DIR}/bin/activate" From 6d82a7725e2e203ebed41a745add02dce2ede836 Mon Sep 17 00:00:00 2001 From: Edouard Date: Fri, 7 Aug 2026 19:21:28 -0400 Subject: [PATCH 2/2] ignore macos files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 83972fa..0e5cb82 100644 --- a/.gitignore +++ b/.gitignore @@ -216,3 +216,5 @@ __marimo__/ # Streamlit .streamlit/secrets.toml + +.DS_Store