Files
MinerU/magic_pdf/utils/annotations.py
2024-10-24 10:50:04 +08:00

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