From f0768160996c13a20d0cb8958ed6274a0b10ebf9 Mon Sep 17 00:00:00 2001 From: petarpetarpetar <39873489+petarpetarpetar@users.noreply.github.com> Date: Mon, 7 Jun 2021 11:47:00 +0200 Subject: [PATCH] Update How To Deploy Python App Using uWSGI And Nginx.md --- guides/How To Deploy Python App Using uWSGI And Nginx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/How To Deploy Python App Using uWSGI And Nginx.md b/guides/How To Deploy Python App Using uWSGI And Nginx.md index fcf90ddf..72e42f4a 100644 --- a/guides/How To Deploy Python App Using uWSGI And Nginx.md +++ b/guides/How To Deploy Python App Using uWSGI And Nginx.md @@ -285,10 +285,10 @@ pip install virtualenv After it is installed, we can create a `virtualenv`: ``` -virtualenv venv --python=python3.5 +virtualenv venv --python=python3.8.5 ``` -Note that `Ubuntu` usually comes with `Python3.5` and it is what we used in the sample code, if you choose to use different versions of `Python`, feel free to change it accordingly and it will be the Python version inside your `virtualenv`. +Note that `Ubuntu` usually comes with `Python3.8.5` and it is what we used in the sample code, if you choose to use different versions of `Python`, feel free to change it accordingly and it will be the Python version inside your `virtualenv`. To activate `virtualenv`: