3

我想在我的代码中导入 fitz。为此,我尝试使用安装 PyMuPDF

pip3 install PyMuPDF

但是,此安装失败并返回此错误:

fitz/fitz_wrap.c:2754:10: fatal error: 'fitz.h' file not found
#include <fitz.h>
         ^~~~~~~~
1 error generated.
error: command '/opt/homebrew/clang' failed with exit code 1

我还尝试通过 Homebrew 安装 mupdf 和 mupdf-tools。他们都无法解决这个问题。对于修复此安装错误的任何帮助,我将不胜感激!

4

1 回答 1

11

假设您使用的是 M1 Mac,您可以安装 、 和最新版本的 PyMuPDF 来解决mupdf这个swig问题freetype

brew install mupdf swig freetype
pip install https://github.com/pymupdf/PyMuPDF/archive/master.tar.gz

来源:https ://github.com/pymupdf/PyMuPDF/discussions/875

于 2021-08-05T13:11:07.623 回答