Skip to content

Commit 624bd97

Browse files
committed
Updated versions
1 parent 036c8f9 commit 624bd97

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
@@ -212,7 +212,7 @@ sudo apt-get install python3-pip python3-dev libpq-dev
212212
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:
213213

214214
```
215-
pip install virtualenv
215+
sudo pip install virtualenv
216216
```
217217

218218
After it is installed, we can create a `virtualenv`:

0 commit comments

Comments
 (0)