From 871f356b869f86820daf8f8b47b1114bc0dc9ac9 Mon Sep 17 00:00:00 2001 From: SimmerV <91698479+SimmerV@users.noreply.github.com> Date: Wed, 17 Jul 2024 21:45:40 -0700 Subject: [PATCH] Update installation.mdx Added pipx as an alternative to pip3 --- docs/software/python-cli/installation.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/software/python-cli/installation.mdx b/docs/software/python-cli/installation.mdx index 4e6a103e..770bde15 100644 --- a/docs/software/python-cli/installation.mdx +++ b/docs/software/python-cli/installation.mdx @@ -98,6 +98,14 @@ values={[ ```shell pip3 install --upgrade meshtastic ``` + - Using pipx as an alternative to pip3 if `externally-managed-environment` error is encountered + ```shell + sudo apt install pipx && pipx install meshtastic + ``` + - If using `pipx` it may be necessary to update `$PATH` by running: + ```shell + pipx ensurepath + ```