Home > Mobile >  /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/pyt
/lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/pyt

Time:06-01

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) 

CodePudding user response:

I also encountered it. I now try to compile a glibc-2.29 and give it a try

CodePudding user response:

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.

  • Related