I tried to read the metadata of an image in google colab but I got an error of GLIBC_2.29 not found . Here is my script :


    import pyexiv2
    m1 = pyexiv2.ImageMetadata( '/content/H0002.png' )
    m1.read()

the error :

/lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/python3.7/dist-packages/pyexiv2/lib/libexiv2.so) 
1

There are 1 answers

1
冬初春末 On

It seems that you have to recompile a libc. The problem is that the version of libc is low. If it is not necessary, it is recommended not to compile libc and soft link because libc is the underlying library of the system.