mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-15 20:50:42 +00:00
19 lines
763 B
Bash
Executable file
19 lines
763 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
os_major_version=$(cat /etc/redhat-release | tr -dc '0-9.'|cut -d \. -f1)
|
|
|
|
|
|
if ! rpm -q --quiet epel-release ; then
|
|
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-$os_major_version.noarch.rpm
|
|
fi
|
|
|
|
echo "installing for os major version : $os_major_version"
|
|
yum install -y redhat-lsb-core expat-devel libcurl-devel tar unzip curl zlib-devel make libunwind icu aria2 rsync bzip2 git bzip2-devel
|
|
|
|
# install dotnet core dependencies
|
|
yum install -y lttng-ust openssl-libs krb5-libs libicu libuuid
|
|
# install dotnet runtimes
|
|
yum install -y https://packages.microsoft.com/config/centos/7/packages-microsoft-prod.rpm
|
|
yum install -y dotnet-sdk-2.2 java-1.8.0-openjdk-devel ccache gcc gcc-c++ python3 python3-devel python3-pip
|
|
|