From 2ed31a0ecedd33d3cd774710b3277df58f23144a Mon Sep 17 00:00:00 2001 From: "Dawn M. Foster" Date: Tue, 29 Aug 2023 07:33:53 +0100 Subject: [PATCH] printed message to the screen to indicate that it is creating the environment and fixed a typo --- setup_venv.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup_venv.sh b/setup_venv.sh index 8211909..a998772 100644 --- a/setup_venv.sh +++ b/setup_venv.sh @@ -1,5 +1,7 @@ #!/bin bash +echo "Creating virtual env" python3 -m venv .venv + echo "To activate virtual env: \"source .venv/bin/activate\"" -echo "To install dependencies: \"pip install -r requirements.txt" +echo "To install dependencies: \"pip install -r requirements.txt\""