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
Just noting, when running master version of msnoise, I had several import errors trying to run msnoise admin that required me to downgrade various packages.
File "/home/yatesal/.local/lib/python3.8/site-packages/flask_wtf/csrf.py", line 10, in <module>
from werkzeug.security import safe_str_cmp
ImportError: cannot import name 'safe_str_cmp' from 'werkzeug.security' (/home/yatesal/.local/lib/python3.8/site-packages/werkzeug/security.py)
Downgrading Werkzeug and flask packages to 2.0.3 from 3.0.1 gets past this error, but then on running msnoise admin again gives a new import error:
File "/home/yatesal/.local/lib/python3.8/site-packages/flask_wtf/form.py", line 4, in <module>
from jinja2 import Markup
ImportError: cannot import name 'Markup' from 'jinja2' (/home/yatesal/.local/lib/python3.8/site-packages/jinja2/__init__.py)
Fixed by downgrading jinja2 from 3.1.3 to 3.0.3. After this msnoise admin runs.
The text was updated successfully, but these errors were encountered:
Just noting, when running master version of msnoise, I had several import errors trying to run msnoise admin that required me to downgrade various packages.
Downgrading Werkzeug and flask packages to 2.0.3 from 3.0.1 gets past this error, but then on running msnoise admin again gives a new import error:
Fixed by downgrading jinja2 from 3.1.3 to 3.0.3. After this msnoise admin runs.
The text was updated successfully, but these errors were encountered: