I encountered an ImportError while running the application due to a missing 'url_quote' in the 'werkzeug.urls' module. The current version isn't specified in the requirements.txt file.
ImportError: cannot import name 'url_quote' from 'werkzeug.urls'
Suggested Solution
Update the requirements.txt file to include a version of Werkzeug that supports the 'url_quote' attribute.
Steps to Reproduce
- Clone the repository.
- Create a virtual environment inside repo with
python -m venv env
- Install the dependencies using the current requirements.txt.
- Run the application.
I encountered an ImportError while running the application due to a missing 'url_quote' in the 'werkzeug.urls' module. The current version isn't specified in the requirements.txt file.
Suggested Solution
Update the requirements.txt file to include a version of Werkzeug that supports the 'url_quote' attribute.
Steps to Reproduce
python -m venv env