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`: