From 18aebf717910e0146d1f2720a0116caff7498ab3 Mon Sep 17 00:00:00 2001 From: peekxc Date: Sat, 9 Dec 2023 17:28:04 -0500 Subject: [PATCH] removed sudo --- tools/cibw_linux.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/cibw_linux.sh b/tools/cibw_linux.sh index 8a7a896..4955ea5 100644 --- a/tools/cibw_linux.sh +++ b/tools/cibw_linux.sh @@ -13,10 +13,10 @@ if [ -n "$(command -v yum)" ]; then # alias python=python3.9 elif [ -n "$(command -v apt-get)" ]; then cat /etc/*-release - sudo apt-get update -y - sudo apt-get install -y clang libomp-dev - sudo apt-get install -y libopenblas-dev - sudo apt-get install -y python3-dev + apt-get update -y + apt-get install -y clang libomp-dev + apt-get install -y libopenblas-dev + apt-get install -y python3-dev elif [ -n "$(command -v apk)" ]; then cat /etc/*-release apk update