From 51777c513025a85f562cc7aa2a44ba0aadfa88be Mon Sep 17 00:00:00 2001 From: lb584 <lb584@cam.ac.uk> Date: Tue, 30 Jan 2024 15:58:10 +0000 Subject: [PATCH] fixing venv path --- scripts/run_utils.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/run_utils.sh b/scripts/run_utils.sh index 727bdf1..ccf9ab6 100755 --- a/scripts/run_utils.sh +++ b/scripts/run_utils.sh @@ -24,10 +24,9 @@ function setup_conda_env() { export EMAIL_CRED=${envs}/credentials/Cred_gmail.json - # activate conda environment of python modules so they can be imported - #TODO: Move conda_env from bin to envs + # activate venv environment of python modules so they can be imported venv=${envs}/conda/venv; - source ${venv}/bin/activate; + source ${venv}/venv/ews_prod/bin/activate; } function teardown_conda_env() { -- GitLab