当我安装 "the speedup extension could not be compiled, Jinja will fall back to the native python classes" 的 Jinja2 时,这意味着什么?

What does it mean when I install Jinja2 that "the speedup extension could not be compiled, Jinja will fall back to the native python classes"?

我在安装时收到此消息,但我不确定这意味着什么。在任何地方都找不到任何信息,这是我第一次使用 Jinja,所以不确定会发生什么。非常感谢任何信息:)

此通知来自markupsafe which has a component (written in C)可以编译加速解析

只有在合适的 Python headers 可用时才会构建此组件;如果不是,则使用 Python 解析(速度较慢)。

这就是警告告诉您的内容。您的应用程序仍将继续正常运行。