From 14cba2efdb83f8aae138cee60ef9df306e2b4aad Mon Sep 17 00:00:00 2001 From: Ravi Shah <63246200+Rav4s@users.noreply.github.com> Date: Sat, 31 Oct 2020 11:56:43 -0500 Subject: [PATCH] Switch pip with wget --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index af9a483..1e3dad7 100644 --- a/install.sh +++ b/install.sh @@ -10,13 +10,13 @@ read -r -p "Press y to acknowledge and continue running the script. [y/N] " resp if [[ "$response" =~ ^([yY][eE][sS]|[yY])$ ]] then - echo "Installing python3 and pip3..." - sudo apt -y install python3 python3-pip python3-dev python3-rpi.gpio + echo "Installing python3 and rpi-gpio..." + sudo apt -y install python3 python3-dev python3-rpi.gpio echo "Making directory..." mkdir garagedoor && cd garagedoor sleep 0.5 echo "Installing Bottlepy..." - pip3 install bottle + wget https://www.bottlepy.org/bottle.py sleep 0.5 echo "Getting latest py file..." wget https://raw.githubusercontent.com/Rav4s/Pi-Garage-Door-Opener/master/Python_script_for_garage_door.py