heyoo icon indicating copy to clipboard operation
heyoo copied to clipboard

ImportError: cannot import name 'url_quote' from 'werkzeug.urls'

Open vlyalcin opened this issue 2 months ago • 1 comments

Hi;

First of all, thank you for sharing this great work with everyone.

I am running the project on Ubuntu 24.04 LTS with Python 3.12, but I am encountering the following error.

(venv) user@server:~/project$ python hook.py
Traceback (most recent call last):
  File "/path/to/project/hook.py", line 5, in <module>
    from flask import Flask, request, make_response
  File "/path/to/project/venv/lib/python3.12/site-packages/flask/__init__.py", line 5, in <module>
    from .app import Flask as Flask
  File "/path/to/project/venv/lib/python3.12/site-packages/flask/app.py", line 30, in <module>
    from werkzeug.urls import url_quote
ImportError: cannot import name 'url_quote' from 'werkzeug.urls' (/path/to/project/venv/lib/python3.12/site-packages/werkzeug/urls.py). Did you mean: 'unquote'?

Has anyone encountered this error before? How can I resolve it?

Thanks.

vlyalcin avatar May 26 '24 08:05 vlyalcin