From 18b725c36d226e233ac253d9a2d01ae5ede6d8a1 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 19 Apr 2020 11:56:01 -0500 Subject: [PATCH] Update install-glances.sh --- install-glances.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-glances.sh b/install-glances.sh index c145fbf..44642fc 100755 --- a/install-glances.sh +++ b/install-glances.sh @@ -156,15 +156,15 @@ echo "" if [[ -x /usr/local/bin/glances || -x /usr/bin/glances ]]; then echo -e "${Green}Upgrade Glances and dependancies${Color_Off}" # Upgrade libs - do_with_root pip install --upgrade $DEPS2 - do_with_root pip install --upgrade glances + do_with_root pip3 install --upgrade $DEPS2 + do_with_root pip3 install --upgrade glances else echo -e "${Green}Installing dependancies...${Color_Off}" - do_with_root pip install $DEPS2 + do_with_root pip3 install $DEPS2 echo "" echo -e "${Green}Installing Glances...${Color_Off}" # Install Glances - do_with_root pip install glances + do_with_root pip3 install glances fi exit 0 \ No newline at end of file