在 DISPLAY 环境下尝试使用 matplotlib 生成 PNG 图像时会出现此错误变量未设置或未定义。这种情况通常发生在无头环境(例如服务器或批处理脚本)中运行 matplotlib 时。
此错误的主要原因是 matplotlib 默认选择需要 X Windows 显示的后端。要解决此问题,您必须显式强制 matplotlib 使用不需要 X Windows 的后端。
解决方案:
要解决此问题,请在之前包含以下代码导入任何其他 matplotlib 模块:
import matplotlib # Force matplotlib to use a backend that does not require X Windows. matplotlib.use('Agg')
这会将后端设置为 Agg(Anti-Grain Geometry)后端,旨在生成图像,无需 X Windows 显示。
替代解决方案:
另一种解决方案是直接在中设置后端.matplotlibrc 配置文件。该文件通常位于 ~/.config/matplotlib 目录中。将以下行添加到文件中:
backend: Agg
这会将所有 matplotlib 实例的后端永久设置为 Agg。
重要
记住必须在导入任何其他 matplotlib 模块之前实施这些解决方案,例如pyplot。否则,matplotlib 将已经选择其后端,并且 use('Agg') 指令将不起作用。
以上是如何修复'当 DISPLAY 未定义时使用 matplotlib 生成 PNG”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!