Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation fails on Ubuntu 23.10 failing on libgl1-mesa-glx #64

Open
egelmex opened this issue Jan 4, 2024 · 1 comment
Open

Installation fails on Ubuntu 23.10 failing on libgl1-mesa-glx #64

egelmex opened this issue Jan 4, 2024 · 1 comment

Comments

@egelmex
Copy link

egelmex commented Jan 4, 2024

installation failing on Ubuntu 23.10 at step where it tries to install libgl1-mesa-glx

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 23.10
Release:        23.10
Codename:       mantic
+ for i in "${REQUIRED_PKG[@]}"
++ dpkg-query -W '-f=${Status}' libgl1-mesa-glx
++ grep -c 'ok installed'
+ '[' 0 -eq 0 ']'
+ apt install --no-install-recommends -y libgl1-mesa-glx
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package libgl1-mesa-glx is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libgl1-mesa-glx' has no installation candidate
@egelmex
Copy link
Author

egelmex commented Jan 4, 2024

I was able to get passed this step

diff --git a/install-librephotos.sh b/install-librephotos.sh
index f2a90dd..a8298c0 100755
--- a/install-librephotos.sh
+++ b/install-librephotos.sh
@@ -86,7 +86,7 @@ fi
 # LIBREPHOTOS : BACKEND

 REQUIRED_PKG=( wget swig ffmpeg libimage-exiftool-perl libpq-dev  curl libopenblas-dev libmagic1 libboost-all-dev libxrender-dev \
-liblapack-dev git bzip2 cmake build-essential libsm6 libglib2.0-0 libgl1-mesa-glx gfortran gunicorn \
+liblapack-dev git bzip2 cmake build-essential libsm6 libglib2.0-0 libgl1 libglx-mesa0 gfortran gunicorn \
 libheif-dev libssl-dev rustc liblzma-dev python3 python3-pip imagemagick )
 for i in "${REQUIRED_PKG[@]}"; do
 [ $(dpkg-query -W -f='${Status}' $i 2>/dev/null | grep -c "ok installed") -eq 0 ] && apt install --no-install-recommends -y $i

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant