_tkinter.TclError: 没有显示名称和 $DISPLAY 环境变量

新手上路,请多包涵

我在服务器上运行一个简单的 python 脚本:

 import matplotlib.pyplot as plt
import numpy as np

x = np.random.randn(60)
y = np.random.randn(60)

plt.scatter(x, y, s=20)

out_png = 'path/to/store/out_file.png'
plt.savefig(out_png, dpi=150)

我尝试在安装了 matplotlib 1.5.1 的服务器中使用命令 python example.py 它失败并出现错误:

 Traceback (most recent call last):
  File "example.py", line 7, in <module>
    plt.scatter(x, y, s=20)
  File "/home/USER/.virtualenvs/nnet/lib/python2.7/site-packages/matplotlib/pyplot.py", line 3241, in scatter
    ax = gca()
  File "/home/USER/.virtualenvs/nnet/lib/python2.7/site-packages/matplotlib/pyplot.py", line 928, in gca
    return gcf().gca(**kwargs)
  File "/home/USER/.virtualenvs/nnet/lib/python2.7/site-packages/matplotlib/pyplot.py", line 578, in gcf
    return figure()
  File "/home/USER/.virtualenvs/nnet/lib/python2.7/site-packages/matplotlib/pyplot.py", line 527, in figure
**kwargs)
  File "/home/USER/.virtualenvs/nnet/lib/python2.7/site-packages/matplotlib/backends/backend_tkagg.py", line 84, in new_figure_manager
    return new_figure_manager_given_figure(num, figure)
  File "/home/USER/.virtualenvs/nnet/lib/python2.7/site-packages/matplotlib/backends/backend_tkagg.py", line 92, in new_figure_manager_given_figure
    window = Tk.Tk()
  File "/usr/local/lib/python2.7/lib-tk/Tkinter.py", line 1810, in __init__
    self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use)
_tkinter.TclError: no display name and no $DISPLAY environment variable

这里发生了什么?

原文由 Po-Yu Kao 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 2k
2 个回答

Matplotlib 默认选择 Xwindows 后端。您需要将 matplotlib 设置为不使用 Xwindows 后端。

将此代码添加到脚本的开头( 在导入 pyplot 之前)并重试:

 import matplotlib
matplotlib.use('Agg')

或添加到 .config/matplotlib/matplotlibrcbackend: Agg 以使用非交互式后端。

 echo "backend: Agg" > ~/.config/matplotlib/matplotlibrc

或者当连接到服务器时使用 ssh -X remoteMachine 命令来使用 Xwindows。

您也可以尝试导出显示: export DISPLAY=mymachine.com:0.0

欲了解更多信息: https ://matplotlib.org/faq/howto_faq.html#matplotlib-in-a-web-application-server

原文由 Serenity 发布,翻译遵循 CC BY-SA 4.0 许可协议

您可以通过在 .py 脚本的最开头添加这两行来解决它。

 import matplotlib
matplotlib.use('Agg')

PS:如果源码最开始没有加上这两行,还是会报错。

原文由 Qihui 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题