From 35f0bb10fe3d8007296c20acda75b65ad923168b Mon Sep 17 00:00:00 2001 From: Juan Manuel Servera <8036360+jmservera@users.noreply.github.com> Date: Sat, 15 Feb 2025 23:28:13 +0000 Subject: [PATCH] Fix activation command in azure.yaml for virtual environment --- azure.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure.yaml b/azure.yaml index 845ca05..db3e463 100644 --- a/azure.yaml +++ b/azure.yaml @@ -13,7 +13,7 @@ hooks: echo "6. Start Streamlit: streamlit run frontend/app.py\n" python3 -m venv .venv - source .venv/bin/activate + . .venv/bin/activate pip install -r frontend/requirements.txt azd env get-values > frontend/.env streamlit run frontend/app.py