File tree 4 files changed +5
-6
lines changed
scripts/install_dependencies
4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 82
82
- name : Install dependencies
83
83
run : |
84
84
# install git (required to build pip deps from the sources)
85
- apt-get update && apt-get install --assume-yes --no-install-recommends git ca-certificates git-lfs ocl-icd-libopencl1
85
+ apt-get update && apt-get install --assume-yes --no-install-recommends git ca-certificates git-lfs
86
86
87
87
- name : Setup Python 3.11
88
88
uses : ./openvino/.github/actions/setup_python
Original file line number Diff line number Diff line change 95
95
run : |
96
96
# install git (required to build pip deps from the sources)
97
97
# install 'g++' to build 'detectron2' and 'natten' wheels
98
- sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates ocl-icd-libopencl1
98
+ sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates
99
99
100
100
- name : Setup Python 3.11
101
101
uses : ./openvino/.github/actions/setup_python
Original file line number Diff line number Diff line change 94
94
if : ${{ runner.os == 'Linux' }}
95
95
run : |
96
96
# install git (required to build pip deps from the sources)
97
- sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates ocl-icd-libopencl1
97
+ sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates
98
98
99
99
- name : Setup Python 3.11
100
100
uses : ./openvino/.github/actions/setup_python
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ if [ "$os" == "raspbian9" ] || [ "$os" == "debian9" ] ; then
131
131
132
132
elif [ " $os " == " ubuntu18.04" ] ; then
133
133
134
- pkgs_core=(ocl-icd-libopencl1 libtbb2)
134
+ pkgs_core=(libtbb2)
135
135
pkgs_gpu=(ocl-icd-libopencl1)
136
136
pkgs_python=(python3.8 libpython3.8 python3.8-venv python3-pip)
137
137
pkgs_dev=(cmake pkg-config g++ gcc libc6-dev make sudo)
@@ -140,7 +140,7 @@ elif [ "$os" == "ubuntu20.04" ] || [ "$os" == "debian10" ] || [ "$os" == "raspbi
140
140
[ " $os " == " ubuntu21.10" ] || [ " $os " == " ubuntu22.04" ] || [ " $os " == " debian11" ] || [ " $os " == " raspbian11" ] ||
141
141
[ " $os " == " ubuntu22.10" ] || [ " $os " == " ubuntu23.04" ] || [ " $os " == " debian12" ] || [ " $os " == " raspbian12" ]; then
142
142
143
- pkgs_core=(ocl-icd-libopencl1 )
143
+ pkgs_core=()
144
144
pkgs_gpu=(ocl-icd-libopencl1)
145
145
pkgs_python=(python3 python3-venv python3-pip)
146
146
pkgs_dev=(cmake pkg-config g++ gcc libc6-dev make sudo)
@@ -223,7 +223,6 @@ elif [ "$os" == "centos7" ] || [ "$os" == "centos8" ] || [ "$os" == "centos9" ]
223
223
pkgs_python+=(python3 python3-pip)
224
224
extra_repos+=(" https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm" )
225
225
fi
226
- pkgs_core+=(" ${! pkgs_gpu} " )
227
226
elif [ " $os " == " opensuse-leap15.3" ] ; then
228
227
pkgs_core=(libtbb2 libtbbmalloc2)
229
228
pkgs_gpu=(libOpenCL1)
You can’t perform that action at this time.
0 commit comments