hi I am trying to do a fresh install of meltano of...
# troubleshooting
s
hi I am trying to do a fresh install of meltano of 3.8 python.
Copy code
e recommend you use --use-feature=2020-resolver to test your packages with the new resolver before it becomes the default.

flask 2.0.0 requires Werkzeug>=2.0, but you'll have werkzeug 0.16.1 which is incompatible.
snowflake-connector-python 2.4.3 requires chardet<4,>=3.0.2, but you'll have chardet 4.0.0 which is incompatible.
then i get
Copy code
from werkzeug.local import ContextVar
ImportError: cannot import name 'ContextVar' from 'werkzeug.local'
when i run meltano
i see couple of threads that here with that error that got around by pinning versions of flask and werkzeug
d
Are you on the latest version of pip?
I had the same issue with pip 20.x that got resolved when I moved to 21.x: https://gitlab.com/meltano/meltano/-/issues/2752#note_575290637
pip install --upgrade pip
should do it
s
yea
Copy code
pip 20.2.3
@douwe_maan that fixed it. Thank you sir 👍
d
🎉
v
Just hit this today as well, came to give the same answer. Douwe's on it 😄