Krutyzy
Thanks for this helpful info. I have a PI 3B here as well, with raspbian 9 (not 10), but I believe the comparisons are helpful. I know Outerdog is looking into this as well, but two things stand out to me:
If I run pip3 show jinja2 on the PI3B the results are:
Code:
Name: Jinja2
Version: 2.11.3
Summary: A very fast and expressive template engine.
Home-page: https://palletsprojects.com/p/jinja/
Author: Armin Ronacher
Author-email: armin.ronacher@active-4.com
License: BSD-3-Clause
Location: /home/pi/.local/lib/python3.5/site-packages
Requires: MarkupSafe
1) The version of jinja2 that you have (2.10) appears to be an older one than the one we use (2.11.3).
2) The "Location" line clearly seems to suggest your version of jinja2 was not installed in the "user" directory - instead it's pulling an obsolete version in from a system library located under /usr. Accordingly it's not really a surprise that things aren't working quite right - this is exactly the kind of thing that the Warning in the README was intended to point out...
Accordingly it might be interesting to have you paste the full output from running the install-sql.sh script. You can get this transcript by wrapping the install-sql invocation with "script" before and "exit" afterwords... Ideally the install should be run on a different username/account than before, to guarantee a fresh start
Thanks for helping to get to the root of this issue!
Max