Skip to content

Commit

Permalink
fix(vine/desktop): install i386 nvidia libraries on ubuntu nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
HoKim98 committed Nov 13, 2024
1 parent 3e0f458 commit 9376fbd
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,12 @@ if lspci | grep 'NVIDIA'; then

if [ "x${_IS_NVIDIA_MANUAL}" == "xfalse" ]; then
if [ "x${_HAS_NVIDIA_GPU}" == "xtrue" ]; then
i386_packages="libnvidia-*-550:i386 libnvidia-egl-wayland1:i386"
if [ "x$(uname -m)" != 'xx86_64' ]; then
i386_packages=''
fi
apt-get install -y \
${i386_packages} \
"libnvidia-*-550" \
"libnvidia-egl-wayland1" \
"nvidia-*-550" \
Expand Down

0 comments on commit 9376fbd

Please sign in to comment.