From f7f7822a5530476f87ef97cea306bdb31f332657 Mon Sep 17 00:00:00 2001 From: LeLawnGames Date: Wed, 15 Jan 2025 22:37:23 -0500 Subject: [PATCH] venv update --- cli/venv.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cli/venv.md b/cli/venv.md index 5e8c51d..66f96b6 100644 --- a/cli/venv.md +++ b/cli/venv.md @@ -1,21 +1,21 @@ To create a new Virtual Environment (venv) run the following in the root folder of your project -''' +```bash % python3 -m venv venv -''' +``` To activate the venv -''' +```bash % source venv/bin/activate -''' +``` Your terminal should then look like this -''' +```bash % (venv) jonas@bendorama % -''' +``` If it doesn't make sure you run the source command before working on your project. To deactivate the venv just run -''' +```bash % deactivate -''' \ No newline at end of file +``` \ No newline at end of file