mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-03-29 03:58:37 +07: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
|