Skip to content

Commit 32e3f1d

Browse files
authored
Merge pull request #29 from petarpetarpetar/patch-1
Update How To Deploy Python App Using uWSGI And Nginx.md
2 parents ca4e129 + 1585ad5 commit 32e3f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ mkdir log
273273
Then we will install a bunch of tools we need to set up our app:
274274

275275
```
276-
sudo apt-get install python-pip python3-dev libpq-dev
276+
sudo apt-get install python3-pip python3-dev libpq-dev
277277
```
278278

279279
Next, we will install `virtualenv`, which is a python library used to create virtual environment. Since we may want to deploy several services on one server in the future, using virtual environment allows us to create independent environment for each project so that their dependencies won't affect each other. We may install `virtualenv` using the following command:

0 commit comments

Comments
 (0)