Skip to content

Commit

Permalink
removed sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
peekxc committed Dec 9, 2023
1 parent e5e180b commit 18aebf7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/cibw_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 18aebf7

Please sign in to comment.