From 34ea65e8bc2d0a11950f2691f69313751e269827 Mon Sep 17 00:00:00 2001 From: LeoHsiao Date: Sun, 4 Feb 2024 16:31:46 +0800 Subject: [PATCH] [doc] update to GLIBC_2.32 --- docs/Tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Tutorial.md b/docs/Tutorial.md index 03e35f6..1e5cc1d 100644 --- a/docs/Tutorial.md +++ b/docs/Tutorial.md @@ -20,7 +20,7 @@ Language: [English](./Tutorial.md) | [中文](./Tutorial-cn.md) ... ctypes.CDLL(os.path.join(lib_dir, 'libexiv2.so')) self._handle = _dlopen(self._name, mode) - OSError: /lib64/libm.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/python3.8/site-packages/pyexiv2/lib/libexiv2.so) + OSError: /lib64/libm.so.6: version `GLIBC_2.32' not found (required by /usr/local/lib/python3.8/site-packages/pyexiv2/lib/libexiv2.so) ``` - This is because pyexiv2 is compiled with a newer version of GLIBC library. You need to upgrade your GLIBC library, or upgrade your Linux distribution. - You can execute `ldd --version` to see the version of the GLIBC library on your computer.