Replies: 2 comments
-
It totaly worked out for me! Thank you ! |
Beta Was this translation helpful? Give feedback.
0 replies
-
For me this below command worked |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Just did a fresh install of Ubuntu Linux 22 and Automatic1111 SD to deal with a few issues and ran into some new ones while going through it. The problem here seemed to be in a Python file but thought I'd share my solution in case anyone else gets stuck here.
I first tried
pip install --upgrade jinja2>=3.0
but that was no help
what I had to do was open /home/me/.local/lib/python3.10/site-packages/starlette/templating.py
change line 56 from
@jinja2.contextfunction
to
@jinja2.pass_context
based on info I found at https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-0?ref=https://githubhelp.com
Beta Was this translation helpful? Give feedback.
All reactions