当我运行以下脚本程序时:

from hunspell import Hunspell

if __name__ == '__main__':
    h = Hunspell()
    print(h.spell('test'))

在本地机器上一切正常,但是当我在docker上构建并运行代码时,它会引发以下异常:
    from hunspell import Hunspell
  File "/usr/local/lib/python3.6/site-packages/hunspell/__init__.py", line 3, in <module>
    from .hunspell import HunspellWrap as Hunspell
ImportError: libhunspell-1.3.so.0: cannot open shared object file: No such file or directory

我的Dockerfile是这样的:
FROM python:3

ADD main.py /

RUN pip install cyhunspell

CMD [ "python", "main.py" ]

Hunspell使用我认为会导致此类异常的C++二进制文件。

有人知道如何解决此问题吗? Dockerfile中的基本镜像是否需要使用Linux?

最佳答案

安装缺少的软件包:

FROM python:3

ADD main.py /
RUN apt-get update
RUN apt-get install -y libhunspell-1.3-0
RUN pip install cyhunspell

CMD [ "python", "main.py" ]

10-07 19:13