ELOUTMADI
ELOUTMADI

Reputation: 59

/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) colab goo

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) 

Upvotes: 2

Views: 9001

Answers (1)

冬初春末
冬初春末

Reputation: 1

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.

Upvotes: -1

Related Questions