Skip to content

Commit 036c8f9

Browse files
committed
Added sudo. If not virtualenv is installed locally for the user and is not recognized as a global command
1 parent 985c177 commit 036c8f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guides/How To Deploy Python App Using uWSGI And Nginx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,10 @@ pip install virtualenv
218218
After it is installed, we can create a `virtualenv`:
219219

220220
```
221-
virtualenv venv --python=python3.8.5
221+
virtualenv venv --python=python3.8
222222
```
223223

224-
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`.
224+
Note that `Ubuntu 20.04` usually comes with `Python3.8` 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`.
225225

226226
To activate `virtualenv`:
227227

0 commit comments

Comments
 (0)