解决Python使用mitmproxy库时报错 ImportError: cannot import name ‘url_quote‘ from ‘werkzeug.urls‘ 因为Werkzeug 3.0. 0已发布,并且Flask没有正确指定依赖项(需求显示Werkzeug>=2.2.0) 解决方法:使用2.2.2的版本 pip install werkzeug==2.2.2 1 pip install werkzeug==2.2.2