From e99d13e570a1b9c3f6dceb7f350b64797817489f Mon Sep 17 00:00:00 2001 From: medusa Date: Thu, 23 May 2024 16:20:44 +0000 Subject: [PATCH] Update tech_docs/python/Python-Virtual-Environments.md --- tech_docs/python/Python-Virtual-Environments.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tech_docs/python/Python-Virtual-Environments.md b/tech_docs/python/Python-Virtual-Environments.md index b0b9ae4..23412f6 100644 --- a/tech_docs/python/Python-Virtual-Environments.md +++ b/tech_docs/python/Python-Virtual-Environments.md @@ -13,7 +13,7 @@ This guide provides step-by-step instructions on setting up a Python virtual env 2. **Create the Virtual Environment** Use the `venv` module to create a virtual environment named `env`. ```bash - python3 -m venv env + python3 -m venv venv ``` ## Activating the Virtual Environment @@ -21,7 +21,7 @@ This guide provides step-by-step instructions on setting up a Python virtual env 1. **Activate the Environment** Once the environment is created, you need to activate it. ```bash - source env/bin/activate + source venv/bin/activate ``` After activation, your prompt will change to indicate that you are in the virtual environment.