Skip to content

Commit a81df19

Browse files
committed
docs: Don't use sudo for pip command
sudo is used for global package installations, most libraries incorporate python packages via local virtual environments. Using sudo would give chmods the user couldn't access. If the user needs install globally, they can imply sudo, but even then it's not advised for python libraries intended to be used programmatically.
1 parent e944ccd commit a81df19

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python setup.py install
1313
**install from pip**
1414

1515
```
16-
sudo pip install qencode
16+
pip install --upgrade qencode
1717
```
1818

1919
**Usage**

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ python setup.py install
1313
**install from pip**
1414

1515
```
16-
sudo pip install qencode
16+
pip install --upgrade qencode
1717
```

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python setup.py install
1313
**install from pip**
1414

1515
```
16-
sudo pip install qencode
16+
pip install --upgrade qencode
1717
```
1818

1919
**Usage**

0 commit comments

Comments
 (0)