From 6e6d3a849547db3c8dff02ee6cb9399b352ecaad Mon Sep 17 00:00:00 2001 From: "Pfitzer, Julia" Date: Mon, 22 Apr 2024 13:19:54 +0200 Subject: [PATCH] Added dependencies. --- build_wheel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_wheel.sh b/build_wheel.sh index 507bbe6..85755a3 100755 --- a/build_wheel.sh +++ b/build_wheel.sh @@ -6,7 +6,7 @@ install_enterprise_linux() { yum install -y epel-release yum update -y # Update the system yum groupinstall -y "Development Tools" - yum install -y cmake git libusb-devel hdf5-devel + sudo yum install -y cmake git libusbx-devel hdf5-devel gcc-c++ python3-devel python3-numpy swig } # Function to install packages on Debian-based systems (Debian, Ubuntu) @@ -18,7 +18,7 @@ install_debian() { # Function to install packages on Alpine Linux install_alpine() { apk update # Update the system - apk add --no-cache build-base cmake git libusb-dev hdf5-dev + apk add --no-cache build-base git libusb-dev hdf5-dev g++ python3-dev py3-numpy swig } # Determine the Linux distribution and install packages accordingly