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
I can confirm that using an older version of python fixes the issue. 3.8.16 works fine.
You should be able to install, alongside your current version, an older version of python on your aws instance.
Then installing/running like this works.
I was unable to reproduce the error myself on a macbook, but my best guess is maybe it's caused by an old version of Flask on a new version of python. I recently updated the Flask dependency; does the latest commit at d85e635 fix the error for you?
Making note of a weird error in my aws instance, throwing me an error with import mapping innit.py
Think it might be because python 3.10 has a change re collections to collections.abc ?
Possible code fix might be:
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping
The text was updated successfully, but these errors were encountered: