mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
### Description <!-- Describe your changes. --> update script with cmake 3.30 to unblock EP Perf ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
26 lines
828 B
Bash
26 lines
828 B
Bash
#!/bin/bash
|
|
DEBIAN_FRONTEND=noninteractive
|
|
apt-get update && apt-get install -y --no-install-recommends \
|
|
wget \
|
|
zip \
|
|
ca-certificates \
|
|
build-essential \
|
|
curl \
|
|
libcurl4-openssl-dev \
|
|
libssl-dev \
|
|
python3-dev
|
|
|
|
# Dependencies: conda
|
|
wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh -O ~/miniconda.sh --no-check-certificate && /bin/bash ~/miniconda.sh -b -p /opt/miniconda
|
|
rm ~/miniconda.sh
|
|
/opt/miniconda/bin/conda clean -ya
|
|
|
|
pip install numpy
|
|
pip install packaging
|
|
pip install "wheel>=0.35.1"
|
|
rm -rf /opt/miniconda/pkgs
|
|
|
|
# Dependencies: cmake
|
|
wget --quiet https://github.com/Kitware/CMake/releases/download/v3.30.1/cmake-3.30.1-linux-x86_64.tar.gz
|
|
tar zxf cmake-3.30.1-linux-x86_64.tar.gz
|
|
rm -rf cmake-3.30.1-linux-x86_64.tar.gz
|