From 8e0c44d77c6f3dd51d4eff5e8708d7a16fbf6ff7 Mon Sep 17 00:00:00 2001 From: Joe Clack <28568841+Lordfirespeed@users.noreply.github.com> Date: Fri, 11 Oct 2024 15:40:16 +0100 Subject: [PATCH] Amend global command example for installs using `pip` --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 5779a2aa74..3ad684a91c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -74,7 +74,7 @@ sudo pipx ensurepath --global # optional to allow pipx actions with --global arg ``` python3 -m pip install --user pipx python3 -m pipx ensurepath -sudo pipx ensurepath --global # optional to allow pipx actions with --global argument +sudo -u $(whoami) python3 -m pipx ensurepath --global # optional to allow pipx actions with --global argument ``` Upgrade pipx with `python3 -m pip install --user --upgrade pipx`.