You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the issue is most likely that since the version of werkzeug is not specified in the requierments.txt file, the latest version gets installed which is not compatible with flask, at least version 2.2.3.
a possible solution is adding this line to the requierments.txt file:
Description
the script fails to launch due to werkzeug version incompatibility with flask.
How to reproduce
requirements.txt
without having werkzeug already installedmain.py
Error Details
Explaination and Solution
the issue is most likely that since the version of werkzeug is not specified in the
requierments.txt
file, the latest version gets installed which is not compatible withflask
, at least version2.2.3
.a possible solution is adding this line to the
requierments.txt
file:for more details, check this stack overflow question.
The text was updated successfully, but these errors were encountered: