You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 23, 2019. It is now read-only.
PS D:\Projects\neo4j-flask> python run.py
Traceback (most recent call last):
File "C:\ProgramData\Anaconda3\lib\site-packages\werkzeug\serving.py", line 65, in <module>
from SocketServer import ThreadingMixIn, ForkingMixIn
ModuleNotFoundError: No module named 'SocketServer'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "run.py", line 6, in <module>
app.run(host='0.0.0.0', port=port)
File "C:\ProgramData\Anaconda3\lib\site-packages\flask\app.py", line 828, in run
from werkzeug.serving import run_simple
File "C:\ProgramData\Anaconda3\lib\site-packages\werkzeug\serving.py", line 68, in <module>
from socketserver import ThreadingMixIn, ForkingMixIn
ImportError: cannot import name 'ForkingMixIn'
PS D:\Projects\neo4j-flask> pip install -U werkzeug
Environment:
Problem
Console output
What Worked for Me
As per: https://stackoverflow.com/a/39214538/2805700
So I ran
pip install -U werkzeug
Updated requirements.txt should to Werkzeug>=0.14.10
The text was updated successfully, but these errors were encountered: