From 6f22c94823a0dd601ac8d3e8ea161a8795161058 Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Sun, 3 Nov 2024 05:50:02 +0100 Subject: [PATCH] Recommend `pipx` to install, instead of `pip` At least on Ubuntu 24.04, `pip` would error out with `error: externally-managed-environment`. According to the following SO, the proper way for an application that should be globally available, is to use `pipx` instead. See https://stackoverflow.com/a/78652149/37706 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a934b68..c322c57 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Sweetness! ### Installation ```sh -pip install https://github.com/joh/when-changed/archive/master.zip +pipx install https://github.com/joh/when-changed/archive/master.zip ```