From 289b63752dc1cae02bb2c007543779040520034c Mon Sep 17 00:00:00 2001 From: Marlene <57748216+marlenezw@users.noreply.github.com> Date: Mon, 22 Jul 2024 11:53:06 +0000 Subject: [PATCH] updating readme with windows venv activation instructions. --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b52c7cd2..54fe59d6 100644 --- a/README.md +++ b/README.md @@ -71,11 +71,26 @@ You can run this template virtually by using GitHub Codespaces. The button will 5. Create a python virtual environment and install the python dependencies: + Linux and MacOS venv activation: ```bash cd backend python3 -m venv venv source venv/bin/activate - poetry install + ``` + + Windows venv activation: + ```bash + cd backend + python3 -m venv venv + # In cmd.exe + venv\Scripts\activate.bat + # In PowerShell + venv\Scripts\Activate.ps1 + ``` + + Install dependencies with poetry: + ```bash + poetry install ``` You will also need to ensure the environment variables are accessible. You can do this by running the following command: