On 2026-01-07 11:02, Jelle van der Waa wrote:
What repositories do you have enabled? I can't reproduce it with out
repository packages in a toolbox container.
core-testing, core, extra-testing, extra in that order.
Please provide python -Q python gdal python-gdal
Assuming you mean pacman, not python:
```
$ pacman -Q python gdal python-gdal
python 3.14.2-2
gdal 3.12.0-4
python-gdal 3.12.0-4
```
That all seems in order to me.
I've also verified that when I import gdal I'm using the system python
package, and not some accidentally installed thing in .local/lib or
something:
```
$ python
Python 3.14.2 (main, Jan 2 2026, 14:27:39) [GCC 15.2.1 20251112] on
linux
Type "help", "copyright", "credits" or "license" for more information.
from osgeo import gdal
ERROR 1: libgdal.so.37: cannot open shared object file: No such file or
directory
ERROR 1: libgdal.so.37: cannot open shared object file: No such file or
directory
gdal.__file__
'/usr/lib/python3.14/site-packages/osgeo/gdal.py'
```
Max