-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker启动报错libgthread-2.0.so.0: cannot open shared object file: No such file or directory(v1.9.0) #521
Comments
https://stackoverflow.com/questions/62786028/importerror-libgthread-2-0-so-0-cannot-open-shared-object-file-no-such-file-o |
同样报了这个错误,在watchover自动升级到最新版了之后。 |
RUN apt-get update && |
感谢(但是我在用的Ubuntu好像无法安装上pip install --system --no-cache huggingface-hub )我这边再研究一下 |
docker启动后不到10秒就关闭,根本来不及敲入命令,不就直接修改好镜像???从1.8开始就一直遇到这个问题 |
I got the same err on Mac |
看到release里的dockerfile里有“RUN apt-get update && apt-get install -y libgl1”, 是不是应该改为“RUN apt-get update && apt-get install -y libgl1 libglib2.0-0“才对呢 |
Use this Dockerfile to build docker image for Debian/Ubuntu: FROM byaidu/pdf2zh:v1.9.0
RUN apt update && \
apt install -y libglib2.0-0 Run |
尝试了你的方法也不行,编译不成功,一直会提示 |
你这个是权限问题吧,删除缓存不成功,可能和你的环境有关系 |
这个dockerfile编译怎么提权呀?没碰到过 |
i wrote docker-compose.yaml and run.sh docker-compose.yamlservices:
pdf2zh:
image: byaidu/pdf2zh
container_name: pdf2zh
build:
context: .
dockerfile_inline: |
FROM byaidu/pdf2zh:v1.9.0
RUN apt update && \
apt install -y libglib2.0-0
ports:
- "7860:7860"
restart: unless-stopped run.shdocker compose up \
--build \
-d QED. |
问题描述
1.9.0 docker启动报错:
/usr/local/lib/python3.12/site-packages/stanza/models/common/beam.py:6: SyntaxWarning: invalid escape sequence '\ '
"""
Traceback (most recent call last):
File "/usr/local/bin/pdf2zh", line 4, in
from pdf2zh.pdf2zh import main
File "/usr/local/lib/python3.12/site-packages/pdf2zh/init.py", line 2, in
from pdf2zh.high_level import translate, translate_stream
File "/usr/local/lib/python3.12/site-packages/pdf2zh/high_level.py", line 25, in
from pdf2zh.doclayout import OnnxModel
File "/usr/local/lib/python3.12/site-packages/pdf2zh/doclayout.py", line 4, in
import cv2
File "/usr/local/lib/python3.12/site-packages/cv2/init.py", line 181, in
bootstrap()
File "/usr/local/lib/python3.12/site-packages/cv2/init.py", line 153, in bootstrap
native_module = importlib.import_module("cv2")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/importlib/init.py", line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ImportError: libgthread-2.0.so.0: cannot open shared object file: No such file or directory
测试文档
services:
pdfmathtranslate:
image: byaidu/pdf2zh:v1.9.0
container_name: pdfmathtranslate
restart: unless-stopped
ports:
- 7860:7860
volumes:
- ./data/pdf2zh_files:/app/pdf2zh_files
The text was updated successfully, but these errors were encountered: