From 973581ae49eb223f92701243684e3734c7ad123a Mon Sep 17 00:00:00 2001 From: Ace Date: Tue, 2 Feb 2021 20:56:54 +0100 Subject: [PATCH] Fixed dependencies issue with yfinance module The yfinance module had missing depencies. These were not required at release time, but are required now. This hotfix fixes the issue with the dependencies. --- installer.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/installer.sh b/installer.sh index 361643f..4b3b523 100644 --- a/installer.sh +++ b/installer.sh @@ -60,6 +60,9 @@ if [ "$option" = 1 ] || [ "$option" = 2 ]; then echo -e "\e[1;36m"Installing Inkycal.."\e[0m" cd Inkycal && pip3 install -e ./ + # Install additional dependencies for yfinance module (ad-hoc fix) + sudo apt-get install libatlas-base-dev -y && pip3 install yfinance && pip3 install -U numpy + echo -e "\e[97mDo you want the software to start automatically at boot?" echo -e "\e[97mPress [Y] for yes or [N] for no. The default option is yes" echo -e "\e[97mConfirm your selection with [ENTER]"