ソースを参照

Update FAQ_en_us.md

Xiaomeng Zhao 1 年間 前
コミット
dc37af0adb
1 ファイル変更9 行追加0 行削除
  1. 9 0
      docs/FAQ_en_us.md

+ 9 - 0
docs/FAQ_en_us.md

@@ -64,3 +64,12 @@ This might be because the server's CPU does not support the AVX/AVX2 instruction
 
 References: https://github.com/opendatalab/MinerU/issues/591 , https://github.com/opendatalab/MinerU/issues/736
 
+
+### 8. Error when installing MinerU on CentOS 7 or Ubuntu 18: `ERROR: Failed building wheel for simsimd`
+
+The new version of albumentations (1.4.21) introduces a dependency on simsimd. Since the pre-built package of simsimd for Linux requires a glibc version greater than or equal to 2.28, this causes installation issues on some Linux distributions released before 2019. You can resolve this issue by using the following command:
+```
+pip install -U magic-pdf[full,old_linux] --extra-index-url https://wheels.myhloli.com
+```
+
+Reference: https://github.com/opendatalab/MinerU/issues/1004