From 5defd9a7f882d75a9bf2c457cdc3ddd94a8bb7e4 Mon Sep 17 00:00:00 2001 From: Bernd Zeimetz Date: Tue, 20 Apr 2021 19:52:57 +0200 Subject: [PATCH] setup.sh: Install libpython3-dev on Debian/Ubuntu Python.h is required to build c modules for Python. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index d0ca1f643..631c31df2 100755 --- a/setup.sh +++ b/setup.sh @@ -138,7 +138,7 @@ function install_macos() { # Install bot Debian_ubuntu function install_debian() { sudo apt-get update - sudo apt-get install -y build-essential autoconf libtool pkg-config make wget git + sudo apt-get install -y build-essential autoconf libtool pkg-config make wget git libpython3-dev install_talib }