From 618e3fe71c78bd77ba886b28c7ec035007fc4589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Micheli?= <71304087+damianmicheli@users.noreply.github.com> Date: Tue, 9 Jan 2024 13:26:12 -0300 Subject: [PATCH] Update 10_django.md The "python - m venv env" command to create the virtual environment doesn't work. We should use "python3" instead. --- 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) -->