From acccc5e31ecc843aa4e97a67ff0030d1637cc026 Mon Sep 17 00:00:00 2001 From: Joe Schr <8218910+TheJoeSchr@users.noreply.github.com> Date: Thu, 23 Feb 2023 11:45:25 +0100 Subject: [PATCH] setup.sh: actually install all dependencies --- setup.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.sh b/setup.sh index a9ff36536..f442f19d7 100755 --- a/setup.sh +++ b/setup.sh @@ -62,6 +62,10 @@ function updateenv() { if [[ $REPLY =~ ^[Yy]$ ]] then REQUIREMENTS=requirements-dev.txt + REQUIREMENTS_PLOT="-r requirements-plot.txt" + REQUIREMENTS_HYPEROPT="-r requirements-hyperopt.txt" + REQUIREMENTS_FREQAI="-r requirements-freqai.txt" + REQUIREMENTS_FREQAI_RL="-r requirements-freqai-rl.txt" else # requirements-dev.txt includes all the below requirements already, so further questions are pointless. read -p "Do you want to install plotting dependencies (plotly) [y/N]? "