We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After following the steps of the tutorial from start to finish I encountered the following error when trying to run:
docker run -p 8888:5000 yourusername/catnip
I encounter the following error in ./app.py:
ImportError: cannot import name 'url_quote' from 'werkzeug.urls' (/usr/local/lib/python3.8/site-packages/werkzeug/urls.py)
It was fixed by setting "Werkzeug==2.2.2" in the requirements.txt https://stackoverflow.com/questions/77213053/why-did-flask-start-failing-with-importerror-cannot-import-name-url-quote-fr
The text was updated successfully, but these errors were encountered:
Or just Werkzeug<3.0.0 in the requirements.txt
Werkzeug<3.0.0
Sorry, something went wrong.
I've updated only flask to 3.0.1 and it works fine
Thanks , it works
No branches or pull requests
After following the steps of the tutorial from start to finish I encountered the following error when trying to run:
docker run -p 8888:5000 yourusername/catnip
I encounter the following error in ./app.py:
ImportError: cannot import name 'url_quote' from 'werkzeug.urls' (/usr/local/lib/python3.8/site-packages/werkzeug/urls.py)
It was fixed by setting "Werkzeug==2.2.2" in the requirements.txt
https://stackoverflow.com/questions/77213053/why-did-flask-start-failing-with-importerror-cannot-import-name-url-quote-fr
The text was updated successfully, but these errors were encountered: