From d78e405c3132b567a3683b36ffd2c5807828f134 Mon Sep 17 00:00:00 2001 From: Javier Cladellas Date: Fri, 20 Dec 2024 13:43:33 +0100 Subject: [PATCH] try using python module #206 --- .../benchmarking/reframe/config/machineConfigs/vega.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/feelpp/benchmarking/reframe/config/machineConfigs/vega.sh b/src/feelpp/benchmarking/reframe/config/machineConfigs/vega.sh index d8e6091e..623009a0 100644 --- a/src/feelpp/benchmarking/reframe/config/machineConfigs/vega.sh +++ b/src/feelpp/benchmarking/reframe/config/machineConfigs/vega.sh @@ -3,7 +3,10 @@ # module load Python/3.12.3-GCCcore-13.3.0 -/cvmfs/sling.si/modules/el7/software/Python/3.12.3-GCCcore-13.3.0/bin/python -m venv .venv +# /cvmfs/sling.si/modules/el7/software/Python/3.12.3-GCCcore-13.3.0/bin/python -m venv .venv + +module load Python/3.12.3-GCCcore-13.3.0 +python3 -m venv .venv source .venv/bin/activate -.venv/bin/python3.12 -m pip install --upgrade pip -.venv/bin/python3.12 -m pip install -r requirements.txt \ No newline at end of file +.venv/bin/python3 -m pip install --upgrade pip +.venv/bin/python3 -m pip install -r requirements.txt \ No newline at end of file