iercan commented on issue #12867: URL: https://github.com/apache/superset/issues/12867#issuecomment-770904265
@singh-ab You need to configure celery and proper webdriver. Also not that there was en error regarding thumbnails and fixed in 1.0.1. see #12760 I'm using chrome webdriver. This is how I installed ``` wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \ apt install -y ./google-chrome-stable_current_amd64.deb && \ wget https://chromedriver.storage.googleapis.com/88.0.4324.96/chromedriver_linux64.zip && \ unzip chromedriver_linux64.zip && \ chmod +x chromedriver && \ mv chromedriver /usr/bin && \ rm -f google-chrome-stable_current_amd64.deb chromedriver_linux64.zip ``` And added these lines to my config. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
