Skip to content

Commit ef52e5f

Browse files
committed
Fix typos in terminal commands in deployment guide.
1 parent 2fc44e4 commit ef52e5f

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
@@ -285,7 +285,7 @@ pip install virtualenv
285285
After it is installed, we can create a `virtualenv`:
286286

287287
```
288-
virtualenv venv --python==python3.5
288+
virtualenv venv --python=python3.5
289289
```
290290

291291
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`.
@@ -509,7 +509,7 @@ The above config allows `nginx` to send the request coming from our user's brows
509509
And at last, in order to enable our configuration, we need to do something like this:
510510

511511
```
512-
sudo rm /etc/nginx/site-enabled/default
512+
sudo rm /etc/nginx/sites-enabled/default
513513
sudo ln -s /etc/nginx/sites-available/items-rest.conf /etc/nginx/sites-enabled/
514514
```
515515

0 commit comments

Comments
 (0)