ImportError:/lib/x86_64-linux-gnu/libm.so.6:未找到版本“GLIBC_2.27”

ImportError:/lib/x86_64-linux-gnu/libm.so.6:未找到版本“GLIBC_2.27”

我正在尝试通过 ssh 在远程服务器上运行 Python 脚本,但我没有 sudo 权限。

这段代码显示标题中指定的错误

import dlib

此后,我运行以下命令:

$ ldd (Ubuntu GLIBC 2.23-0ubuntu10) 2.23
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.

所以我认为我没有正确版本的 GLIBC。我不确定我该怎么做。我应该让 dlib 使用另一个版本的 GLIBC,还是更新 GLIBC?我没有 sudo 权限,哪一个最简单?

谢谢

答案1

您是否尝试以用户身份安装 open3d?

pip install --user open3d

相关内容