From 55fffb265089636d1f72de63e443bbb511748a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Feitosa=20da=20Silva?= Date: Sun, 23 Apr 2023 15:06:44 -0300 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=93=9D=20Update=20installation=20meth?= =?UTF-8?q?od=20for=20linux=20users?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0872eae951..a90db32ed2 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,8 @@ Upgrade pipx with `brew update && brew upgrade pipx`. ### On Linux, install via pip (requires pip 19.0 or later) ``` -python3 -m pip install --user pipx -python3 -m pipx ensurepath +sudo apt install pipx +pipx ensurepath ``` Upgrade pipx with `python3 -m pip install --user --upgrade pipx`. From cb5914dbd421d400e60f1d317871cbc39de874bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Feitosa=20da=20Silva?= Date: Sun, 23 Apr 2023 15:12:02 -0300 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=93=9D=20Update=20installation=20meth?= =?UTF-8?q?od=20for=20Ubuntu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update installation method for Ubuntu 23.04 or above and Ubuntu 22.04 of below --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a90db32ed2..503f26e585 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,23 @@ pipx ensurepath Upgrade pipx with `brew update && brew upgrade pipx`. + ### On Linux, install via pip (requires pip 19.0 or later) -``` +- Ubuntu 23.04 or above + +```sh sudo apt install pipx pipx ensurepath ``` +- Ubuntu 22.04 or below + +```sh +python3 -m pip install --user pipx +python3 -m pipx ensurepath +``` + Upgrade pipx with `python3 -m pip install --user --upgrade pipx`. ### On Windows, install via pip (requires pip 19.0 or later) From 2bc05f1d954a07143111c075bfeffa0e1876f0cc Mon Sep 17 00:00:00 2001 From: Jason Lam Date: Wed, 17 May 2023 22:44:43 +0800 Subject: [PATCH 3/4] Update --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 503f26e585..fb25983018 100644 --- a/README.md +++ b/README.md @@ -36,18 +36,19 @@ pipx ensurepath Upgrade pipx with `brew update && brew upgrade pipx`. -### On Linux, install via pip (requires pip 19.0 or later) +### On Linux - Ubuntu 23.04 or above -```sh +``` +sudo apt update sudo apt install pipx pipx ensurepath ``` - Ubuntu 22.04 or below -```sh +``` python3 -m pip install --user pipx python3 -m pipx ensurepath ``` From f680c9dab6cfe41cb5695a3ce289103e01639ffb Mon Sep 17 00:00:00 2001 From: Jason Lam Date: Wed, 17 May 2023 22:46:48 +0800 Subject: [PATCH 4/4] Remove space --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index fb25983018..9fc9774c7e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,6 @@ pipx ensurepath Upgrade pipx with `brew update && brew upgrade pipx`. - ### On Linux - Ubuntu 23.04 or above