From c719712b6256f4add4e65e8d4369b36d73342b48 Mon Sep 17 00:00:00 2001 From: Benjamin Rood Date: Sun, 5 Sep 2021 16:40:10 +0300 Subject: [PATCH] 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._ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fa3f4c..182acce 100644 --- a/README.md +++ b/README.md @@ -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: