From 2a5932b66d839ff6a49b14530ba1df6aeaa3dc1d Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sat, 4 Jun 2022 16:37:50 +0700 Subject: [PATCH] Upgrade pip before installing compose --- scripts/install | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 0ef6981..77b270d 100755 --- a/scripts/install +++ b/scripts/install @@ -141,7 +141,9 @@ install_docker() { install_docker_compose() { sudo apt-get install --yes python3-pip libffi-dev - sudo pip3 install docker-compose + # We need to upgrade pip (via itself) because old pip versions in some OS repos fail to install deps. + python3 -m pip install --upgrade pip + sudo python3 -m pip install docker-compose } install_umbrel() {