Browse Source

Update FAQ_en_us.md

Xiaomeng Zhao 1 year ago
parent
commit
4983bc1df6
1 changed files with 8 additions and 0 deletions
  1. 8 0
      docs/FAQ_en_us.md

+ 8 - 0
docs/FAQ_en_us.md

@@ -36,3 +36,11 @@ sudo apt-get install libgl1-mesa-glx
 ```
 
 Reference: https://github.com/opendatalab/MinerU/issues/388
+
+### 5. Encountered error `ModuleNotFoundError: No module named 'fairscale'`
+You need to uninstall the module and reinstall it:
+```bash
+pip uninstall fairscale
+pip install fairscale
+```
+Reference: https://github.com/opendatalab/MinerU/issues/411