From eaa37a15cd91f8227adf0955a22a36decd111384 Mon Sep 17 00:00:00 2001 From: ingria Date: Tue, 16 Feb 2021 18:47:24 +0300 Subject: [PATCH] Add missing dependencies for Ubuntu systems Fixes this error: error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 --- scripts/toninstaller.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/toninstaller.sh b/scripts/toninstaller.sh index dafd428e..dbfc3b91 100644 --- a/scripts/toninstaller.sh +++ b/scripts/toninstaller.sh @@ -41,7 +41,7 @@ if [ "$OSTYPE" == "linux-gnu" ]; then elif [ -f /etc/debian_version ]; then echo "Ubuntu/Debian Linux detected." apt-get update - apt-get install -y git make cmake clang libgflags-dev zlib1g-dev libssl-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-pip + apt-get install -y git make cmake clang libgflags-dev zlib1g-dev libssl-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-dev python3-pip else echo "Unknown Linux distribution." echo "This OS is not supported with this script at present. Sorry."