dosubot[bot] commented on issue #31013: URL: https://github.com/apache/superset/issues/31013#issuecomment-2490421327
<!-- Answer --> To resolve the "name 'Image' is not defined" error in the Celery worker while exporting a dashboard as PDF using the Chrome driver in Superset version 4.1.0 with Python 3.11, you need to ensure that the Python Imaging Library (PIL) is installed. This error occurs because the `Image` module from PIL is not found. You can fix this by installing the `Pillow` package, which is the modern version of PIL. Run the following command to install it: ```bash pip install Pillow ``` This will make the `Image` module available, resolving the error <sup>[[1]](https://github.com/apache/superset/blob/master/superset/utils/screenshots.py)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
