题外话:这个部署过程实在是很坑,可能本教程任有不完善之处。还请海涵
第一步:
brew安装依赖
brew install mupdf swig freetype
第二步:
增加Swig Path依赖
vi ~/.bash_profile
export SWIG_HOME=/opt/homebrew/Cellar/swig/4.1.0/bin
export PATH=$PATH:$SWIG_HOME
:wq
source ~/.bash_profile
第三步:
进入Anaconda环境
conda activate [envName]
第四步:
pip install fitz
pip install https://github.com/pymupdf/PyMuPDF/archive/master.tar.gz
pip install frontend
完成 Done