From 3cf75aeb47c319489072c5934e42d58abb1dc5cb Mon Sep 17 00:00:00 2001 From: CodeBySayak Date: Thu, 2 Apr 2026 13:44:40 +0530 Subject: [PATCH 1/2] Update install instructions to use pipx instead of pip3 --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef5e786c0..20c82240a 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,12 @@ Visit the [Wiki](../../wiki) for more information. Install via PyPI: ```bash -pip3 install linode-cli +pipx install linode-cli ``` - +To upgrade: +``` +pipx upgrade linode-cli +We recommend using `pipx` to install `linode-cli`, as it installs Python CLI tools in isolated environments and avoids conflicts with system-managed Python packages (PEP 668). Visit the [Wiki](../../wiki/Installation) for more information. ## Contributing From 22faae2a6608c9007e763c25f31f1a4beb6e0642 Mon Sep 17 00:00:00 2001 From: CodeBySayak Date: Fri, 3 Apr 2026 18:58:06 +0530 Subject: [PATCH 2/2] Update README.md Co-authored-by: Michal Wojcik <32574975+mgwoj@users.noreply.github.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 20c82240a..e99a5ec27 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ pipx install linode-cli To upgrade: ``` pipx upgrade linode-cli +``` We recommend using `pipx` to install `linode-cli`, as it installs Python CLI tools in isolated environments and avoids conflicts with system-managed Python packages (PEP 668). Visit the [Wiki](../../wiki/Installation) for more information.