dat-linux edited a comment on issue #18723: URL: https://github.com/apache/superset/issues/18723#issuecomment-1049107830
The problem is the install instructions for superset need to be updated. Because it will attempt to install latest markupsafe package, which you then need to go back and add the extra uninstall/install step to fix it. Can confirm the following two intervening steps resolves the issue when done as part of the install process: ``` python3 -m pip install apache-superset python3 -m pip uninstall -y markupsafe #1 python3 -m pip install markupsafe==2.0.1 #2 ..etc ``` -- 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]
