-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dtale not working with Flask 2.2.1 #688
Comments
I just ran into the same issue. Flask 2.2.1, same error |
same, but we can solve the problem by "pip install flask==2.1.3" |
Apologies everyone, I've dug in and found that by updating line 155 of
seems to solve the problem. I'll release a new version soon and let you know when its out there |
@carb0nc0py @tianfy1258 @UFO-101 just released v2.7.1 to pypi (conda-forge available shortly) which fixes this issue. Thanks for spotting this & let me know if you have any other issues. Also, if you have done so already, please toss your ⭐ on the repo. Thanks! 🙏 |
Dtale is unable to serve any static assets. The browser shows an
Internal Server Error 500
.I reproduced this in several environments (Linux, Mac, running in a notebook, as a script inside Streamlit) with the following script.
The problem appears to be with either the function
url_for
indtale/app.py
or the functionurl_for
inflask/helpers.py
. If you set theapp_root
parameter the error goes away and the browser shows just a blank screen.Fixed by downgrading to Flask
2.1.3
.The text was updated successfully, but these errors were encountered: