Update FAQ_zh_cn.md

This commit is contained in:
Xiaomeng Zhao
2024-11-22 18:05:42 +08:00
committed by GitHub
parent 0624b56567
commit 6eabc682c8

View File

@@ -64,4 +64,13 @@ pip install paddlepaddle-gpu==3.0.0b1 -i https://www.paddlepaddle.org.cn/package
可能是因为服务器CPU不支持AVX/AVX2指令集或cpu本身支持但被运维禁用了可以尝试联系运维解除限制或更换服务器。
参考https://github.com/opendatalab/MinerU/issues/591 https://github.com/opendatalab/MinerU/issues/736
参考https://github.com/opendatalab/MinerU/issues/591 https://github.com/opendatalab/MinerU/issues/736
### 8.在 CentOS 7 或 Ubuntu 18 系统安装MinerU时报错`ERROR: Failed building wheel for simsimd`
新版本albumentations(1.4.21)引入了依赖simsimd,由于simsimd在linux的预编译包要求glibc的版本大于等于2.28导致部分2019年之前发布的Linux发行版无法正常安装可通过如下命令安装:
```
pip install -U magic-pdf[full,old_linux] --extra-index-url https://wheels.myhloli.com
```
参考https://github.com/opendatalab/MinerU/issues/1004