1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-05 18:31:10 +01:00

Use --user with pip, not sudo pip

`sudo` with `pip` is [considered unsafe](https://stackoverflow.com/a/22517157/2469559).

Instead, run such commands with the `--user` argument to get the same result _safely._
This commit is contained in:
Benjamin Rood 2021-09-05 16:40:10 +03:00 committed by Pablo Aguiar
parent 51e4e87280
commit c719712b62

View File

@ -124,7 +124,7 @@ On Ubuntu / Mint, install *The Fuck* with the following commands:
```bash
sudo apt update
sudo apt install python3-dev python3-pip python3-setuptools
sudo pip3 install thefuck
pip3 install thefuck --user
```
On FreeBSD, install *The Fuck* with the following commands: