From 1394262aebe8126c6b99e1d7c77291d67eec94bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diogo=20Cond=C3=AA=C3=A7o?= Date: Mon, 11 Mar 2024 10:41:10 +0000 Subject: [PATCH] correcting venv python version On the course you forgot to update the python version while creating the venv --- website/content/08_web_frameworks/10_django.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/08_web_frameworks/10_django.md b/website/content/08_web_frameworks/10_django.md index 5bbef36..333319b 100644 --- a/website/content/08_web_frameworks/10_django.md +++ b/website/content/08_web_frameworks/10_django.md @@ -32,7 +32,7 @@ We're going to install these dependencies in our newly created virtual environme Note, if you're already in a virtual environment, type `deactivate` or open a new terminal window. ```bash -$ python -m venv env +$ python3 -m venv env $ source env/bin/activate (env) $ python -m pip install -r requirements.txt ``` @@ -117,4 +117,4 @@ Let's make sure that everything worked by starting the server, then navigating t You should see: -![](/images/django/success.png) --> \ No newline at end of file +![](/images/django/success.png) -->