From c5fcdc060427e9a0750df1c3e7b07844a79f028a Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Fri, 19 Mar 2021 15:00:14 -0400 Subject: [PATCH] Add venv activation step to README --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aa6eeb2..5927087 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,13 @@ git+https://github.itap.purdue.edu/ECN/webqueue2-api@0.9.1#egg=webqueue2-api ## Contributing 1. Clone the git repo: -``` +```bash git clone https://github.itap.purdue.edu/ECN/webqueue2-api.git ``` -2. Create a Python virtual environment: -``` +2. Create and activate Python virtual environment: +```bash python3 -m venv venv +source venv/bin/activate ``` 3. Install dependencies: ```bash