码迷,mamicode.com
首页 > 编程语言 > 详细

[Python] RuntimeError: Invalid DISPLAY variable

时间:2018-07-06 13:38:01      阅读:386      评论:0      收藏:0      [点我收藏+]

标签:要求   ack   pytho   图形界面   numbers   html   port   article   post   

 

一、问题描述: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

标签:要求   ack   pytho   图形界面   numbers   html   port   article   post   

原文地址:https://www.cnblogs.com/williamjie/p/9273055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!