From 8e1cdb9103789f425e93d57faf1b16b6f00e6d23 Mon Sep 17 00:00:00 2001 From: talentoscope <22162766+talentoscope@users.noreply.github.com> Date: Mon, 2 May 2022 23:20:13 +0100 Subject: [PATCH] Update setup.sh Added curl to dependencies for Debian systems --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index e0b010387..dcf6c02c7 100755 --- a/setup.sh +++ b/setup.sh @@ -155,7 +155,7 @@ function install_macos() { # Install bot Debian_ubuntu function install_debian() { sudo apt-get update - sudo apt-get install -y gcc build-essential autoconf libtool pkg-config make wget git $(echo lib${PYTHON}-dev ${PYTHON}-venv) + sudo apt-get install -y gcc build-essential autoconf libtool pkg-config make wget git curl $(echo lib${PYTHON}-dev ${PYTHON}-venv) install_talib }