From f9fa1677d69e7ef802f5da566a0ea2e24c891ca2 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 13 Dec 2023 10:26:27 -0800 Subject: [PATCH] Use pipx install since upgrade doesn't work on first install Maybe should add --force to allow upgrades, but keeping it stable for now. --- install-coding-helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-coding-helpers.sh b/install-coding-helpers.sh index 369d072..ab79906 100755 --- a/install-coding-helpers.sh +++ b/install-coding-helpers.sh @@ -93,7 +93,7 @@ function maybe_pip_install() { if command_exists pipx ;then # Prefer pipx to keep environments isolated - pipx upgrade "${user_bins[@]}" + pipx install "${user_bins[@]}" else if command_exists pip3 ;then # If pip3 is there, use it to ensure we're using python 3