From 0c04925cbd5dcaa3258952f73341e226ee54f5f8 Mon Sep 17 00:00:00 2001 From: Ace Date: Mon, 11 Mar 2019 17:30:23 +0100 Subject: [PATCH] Added some new required packages To implement the RSS-feedparser, a new package is required: feedparser ->sudo pip3 install feedparser For super-fast image processing, numpy is required -> sudo apt-get install python-numpy The above have been added in the installer --- Installer-with-debug.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Installer-with-debug.sh b/Installer-with-debug.sh index 9b89e7f..fa2d014 100644 --- a/Installer-with-debug.sh +++ b/Installer-with-debug.sh @@ -67,9 +67,7 @@ if [ "$option" = 2 ]; then # Installing a few packages which are missing on Raspbian Stretch Lite echo -e "\e[1;36m"Installing a few packages that are missing on Raspbian Stretch Lite..."\e[0m" - sudo apt-get install python3-pip python-rpi.gpio-dbgsym python3-rpi.gpio python-rpi.gpio python3-rpi.gpio-dbgsym python3-spidev git libopenjp2-7-dev libtiff5 -y - pip3 install Pillow==5.3.0 - sudo pip3 install Pillow==5.3.0 + sudo apt-get install python3-pip python-rpi.gpio-dbgsym python3-rpi.gpio python-rpi.gpio python3-rpi.gpio-dbgsym python3-spidev git libopenjp2-7-dev libtiff5 python-numpy -y echo "" # Running apt-get clean and apt-get autoremove @@ -80,9 +78,13 @@ if [ "$option" = 2 ]; then # Installing packages required by the main script echo -e "\e[1;36m"Installing a few required packages for the E-Paper Software"\e[0m" sudo pip3 install pyowm + sudo pip3 install Pillow==5.3.0 sudo pip3 install ics + sudo pip3 install feedparser pip3 install pyowm pip3 install ics + pip3 install feedparser + pip3 install Pillow==5.3.0 echo -e "\e[1;36m"Finished installing libraries"\e[0m" fi