Installing the codebase from the github repo and executing it, gives the following error:
ImportError: cannot import name 'url_quote' from 'werkzeug.urls'
Werkzeug seems to be a dependency for Flask. Flask requires Werkzeug>=2.2.0 and the latest version of Werkzeug is usually installed. Changing to an older version of Werkzeug fixed the issue.
Installing the codebase from the github repo and executing it, gives the following error:
ImportError: cannot import name 'url_quote' from 'werkzeug.urls'Werkzeug seems to be a dependency for Flask. Flask requires Werkzeug>=2.2.0 and the latest version of Werkzeug is usually installed. Changing to an older version of Werkzeug fixed the issue.