mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-09-19 09:30:53 +08:00
12 lines
211 B
Python
12 lines
211 B
Python
|
|
from loguru import logger
|
|
|
|
|
|
def ImportPIL(f):
|
|
try:
|
|
import PIL # noqa: F401
|
|
except ImportError:
|
|
logger.error('Pillow not installed, please install by pip.')
|
|
exit(1)
|
|
return f
|