1. When using the command pip install magic-pdf[full]
on newer versions of macOS, the error zsh: no matches found: magic-pdf[full]
occurs.
On macOS, the default shell has switched from Bash to Z shell, which has special handling logic for certain types of string matching. This can lead to the "no matches found" error. You can try disabling the globbing feature in the command line and then run the installation command again.
setopt no_nomatch
pip install magic-pdf[full]
This might be due to an incomplete download of the model file. You can try re-downloading the model file and then try again.
Reference: opendatalab#143
The path for the model files is configured in "magic-pdf.json". just like:
{
"models-dir": "/tmp/models"
}
This path is an absolute path, not a relative path. You can obtain the absolute path in the models directory using the "pwd" command.
Reference: opendatalab#155 (comment)
4. Encountered the error ImportError: libGL.so.1: cannot open shared object file: No such file or directory
in Ubuntu 22.04 on WSL2
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:
sudo apt-get install libgl1-mesa-glx
Reference: opendatalab#388
You need to uninstall the module and reinstall it:
pip uninstall fairscale
pip install fairscale
Reference: opendatalab#411