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