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\""