[Python] RuntimeError: Invalid DISPLAY variable

Posted 割肉机

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python] RuntimeError: Invalid DISPLAY variable相关的知识,希望对你有一定的参考价值。

 

一、问题描述:Python版本是3.6.3的,在Windows下使用matplotlib绘图可以,但是在ssh远程绘图的时候报错了,错误是:RuntimeError: Invalid DISPLAY variable。

 

二、原因:matplotlib的默认backend是TkAgg,而FltAgg、GTK、GTKCairo、TkAgg、Wx和WxAgg这几个backend都要求有GUI图形界面,所以在ssh操作的时候会报错。

 

三、解决办法:在导入matplotlib的时候指定不需要GUI的backend(Agg、Cairo、PS、PDF和SVG)。例如:

  1.  
    import matplotlib.pyplot as plt
  2.  
    plt.switch_backend(‘agg‘)

     

以上是关于[Python] RuntimeError: Invalid DISPLAY variable的主要内容,如果未能解决你的问题,请参考以下文章

RuntimeError: Python is not installed as a framework 错误解决方案

尝试python多处理的Windows上的RuntimeError

Python3基础 raise 产生RuntimeError 异常

RuntimeError: Python is not installed as a framework. The Mac OS X backend will not be able to funct

从 django urls 运行的 websockets 错误:RuntimeError: There is no current event loop in thread 'Dummy-1'

RuntimeError: each element in list of batch should be of equal size