Skip to content
New issue

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

Cannot import name 'url_quote' from 'werkzeug.urls' #378

Open
jcpayne opened this issue Oct 2, 2023 · 8 comments · May be fixed by #381
Open

Cannot import name 'url_quote' from 'werkzeug.urls' #378

jcpayne opened this issue Oct 2, 2023 · 8 comments · May be fixed by #381
Labels

Comments

@jcpayne
Copy link

jcpayne commented Oct 2, 2023

Wonderful tutorial -- thanks so much. I ran into an import error on the catnip example, in the run command:

sudo docker run -p 8888:5000 <username>/catnip
#ImportError: cannot import name 'url_quote' from 'werkzeug.urls' (/usr/local/lib/python3.8/site-packages/werkzeug/urls.py)

Docker Engine on Kubuntu

@jcpayne jcpayne added the bug label Oct 2, 2023
@dwolf42
Copy link

dwolf42 commented Oct 2, 2023

I second this, great tutorial so far, but I also get ImportError: cannot import name 'url_quote' from 'werkzeug.urls' (/usr/local/lib/python3.10/site-packages/werkzeug/urls.py) when I run the docker file.
As you might see, even changing from python 3.9 in your example to 3.10 doesn't fix the issue.

I run Docker Engine on Ubuntu

Full error:
Traceback (most recent call last): File "/usr/scr/app/./app.py", line 1, in <module> from flask import Flask, render_template File "/usr/local/lib/python3.10/site-packages/flask/__init__.py", line 7, in <module> from .app import Flask as Flask File "/usr/local/lib/python3.10/site-packages/flask/app.py", line 28, in <module> from . import cli File "/usr/local/lib/python3.10/site-packages/flask/cli.py", line 18, in <module> from .helpers import get_debug_flag File "/usr/local/lib/python3.10/site-packages/flask/helpers.py", line 16, in <module> from werkzeug.urls import url_quote ImportError: cannot import name 'url_quote' from 'werkzeug.urls' (/usr/local/lib/python3.10/site-packages/werkzeug/urls.py)

@dwolf42
Copy link

dwolf42 commented Oct 2, 2023

@jcpayne jcpayne I found a workaround:

  • in your docker-curriculum / flask-app there is a file called requirements.txt
  • change the Flask version to 3.0.0 and set the Werkzeug version to 3.0.0.
    The file looks like this now:
Flask==3.0.0
Werkzeug==3.0.0
  • Save and exit.
  • again run docker build -t /catnip .
  • there will be a red warning about this is a development server which you can ignore.
  • type in your browser 127.0.0.1:5000
  • enjoy cat gif :)

@jcpayne
Copy link
Author

jcpayne commented Oct 2, 2023

That's great @dwolf42 , thanks! It works for me too.

@yozsoy
Copy link

yozsoy commented Oct 3, 2023

@dwolf42 fixed the issue for me

@peter-kaagman
Copy link

Alas did not solve the issue for me. Gives me an error:
2.481 ERROR: Could not find a version that satisfies the requirement Werzeug==3.0.0 (from versions: none)
2.482 ERROR: No matching distribution found for Werzeug==3.0.0

Saw a mention of werzeug version 2.2.2, tried that version to, same error.

To bad, really liked the way this tutorial was going

Peter

@rgibbins
Copy link

rgibbins commented Dec 3, 2023

The following worked for me in the requirements.txt file:

Flask==2.0.2
Werkzeug==2.2.2

@Programador04
Copy link

@jcpayne jcpayne I found a workaround:

* in your docker-curriculum / flask-app there is a file called requirements.txt

* change the Flask version to 3.0.0 and set the Werkzeug version to 3.0.0.
  The file looks like this now:
Flask==3.0.0
Werkzeug==3.0.0
* Save and exit.

* again run docker build -t /catnip .

* there will be a red warning about this is a development server which you can ignore.

* type in your browser 127.0.0.1:5000

* enjoy cat gif :)

Hi @dwolf42 I wasn't able to solve the problem with this approach. Could you help me? I have tried all possible ways that I have found. I am using Ubuntu, Python 3.10.12, Flask 3.0.3, Werkzeug 3.0.2

@dwolf42
Copy link

dwolf42 commented May 6, 2024

Hey @Programador04, sorry for the late reply.
I would love to help you out here, but unfortunately I’m just someone who happens to find a workaround by chance.

If changing the stuff I mentioned inside the requirements.txt didn’t work for you, only @prakhar1989 could be able to give a helping hand.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants