FAQ_en_us.md 1 KB
Newer Older
sfk's avatar
sfk committed
1
2
# Frequently Asked Questions

3
### 1. Encountered the error `ImportError: libGL.so.1: cannot open shared object file: No such file or directory` in Ubuntu 22.04 on WSL2
4
5
6
7
8
9
10
11

The `libgl` library is missing in Ubuntu 22.04 on WSL2. You can install the `libgl` library with the following command to resolve the issue:

```bash
sudo apt-get install libgl1-mesa-glx
```

Reference: https://github.com/opendatalab/MinerU/issues/388
12

drunkpig's avatar
drunkpig committed
13

14
### 2. Error when installing MinerU on CentOS 7 or Ubuntu 18: `ERROR: Failed building wheel for simsimd`
Xiaomeng Zhao's avatar
Xiaomeng Zhao committed
15
16
17

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:
```
18
19
20
conda create -n mineru python=3.11 -y
conda activate mineru
pip install -U "mineru[pipeline_old_linux]"
Xiaomeng Zhao's avatar
Xiaomeng Zhao committed
21
22
23
```

Reference: https://github.com/opendatalab/MinerU/issues/1004