我在服务器上运行一个简单的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

这里发生了什么?


当前回答

尝试使用python3,每个问题都解决了

其他回答

我试图在树莓派上远程运行一个简单的tkinter应用程序时也遇到了同样的问题。在我的例子中,我确实希望在pi显示器上显示tkinter GUI,但我希望能够从我的主机上通过SSH执行它。我也没有使用matplotlib,所以这不是我的问题的原因。我能够通过设置DISPLAY环境变量来解决这个问题,就像错误提示的命令一样:

export DISPLAY=:0.0

关于display环境变量的作用以及语法为何如此奇怪的很好的解释可以在这里找到:https://askubuntu.com/questions/432255/what-is-display-environment-variable

您可以通过在.py脚本的VERY开头添加这两行来解决这个问题。

import matplotlib
matplotlib.use('Agg')

PS:如果没有在源代码的最开始添加这两行,错误仍然会存在。

我想在这里补充一个答案,没有人明确地说明实现。

对于这种失败,这是一个很好的参考资源: https://matplotlib.org/faq/usage_faq.html

在我的例子中,使用matplotlib。Use没有起作用,因为它在某种程度上已经在其他地方设置了。然而,我能够通过定义一个环境变量来克服这个错误:

导出 MPLBACKEND=Agg

这就解决了这个问题。

我的错误是在CircleCI流中,这解决了失败的测试。一件奇怪的事情是,我的测试在使用pytest运行时会通过,但是在使用并行性和circleci测试拆分功能时会失败。但是,声明这个env变量解决了这个问题。

我在Colab上遇到了这个问题,下面的代码行解决了它。 把它放在笔记本的开头。 参考

### CREATE VIRTUAL DISPLAY ###
!apt-get install -y xvfb # Install X Virtual Frame Buffer
import os
os.system('Xvfb :1 -screen 0 1600x1200x16  &')    # create virtual display with size 1600x1200 and 16 bit color. Color can be changed to 24 or 8
os.environ['DISPLAY']=':1.0'    # tell X clients to use our virtual DISPLAY :1.0.
%matplotlib inline
### INSTALL GHOSTSCRIPT (Required to display NLTK trees) ###
!apt install ghostscript python3-tk

尝试使用python3,每个问题都解决了