1.问题:在本地用matplotlib绘图可以,但是在ssh远程绘图的时候会报错 RuntimeError: Invalid DISPLAY variable

2.原因:matplotlib的默认backend是TkAgg,而FltkAgg, GTK, GTKAgg, GTKCairo, TkAgg , Wx or WxAgg这几个backend都要求有GUI图形界面的,所以在ssh操作的时候会报错.

  1. import matplotlib.pyplot as plt
  2. Backend TkAgg is interactive backend. Turning interactive mode on.
  3.  
  4. plt.get_backend()
  5. Out[3]: u'TkAgg'

3.解决方法:指定不需要GUI的backend(Agg, Cairo, PS, PDF or SVG

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

4.源码

查看plt.switch_backend()的源码实现和解析:

  1. def switch_backend(newbackend):
  2. """
  3. Switch the default backend. This feature is **experimental**, and
  4. is only expected to work switching to an image backend. e.g., if
  5. you have a bunch of PostScript scripts that you want to run from
  6. an interactive ipython session, you may want to switch to the PS
  7. backend before running them to avoid having a bunch of GUI windows
  8. popup. If you try to interactively switch from one GUI backend to
  9. another, you will explode.
  10.  
  11. Calling this command will close all open windows.
  12. """
  13. close('all')
  14. global _backend_mod, new_figure_manager, draw_if_interactive, _show
  15. matplotlib.use(newbackend, warn=False, force=True)
  16. from matplotlib.backends import pylab_setup
  17. _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()

查看matplotlib.use()的源码:

  1. def use(arg, warn=True, force=False):
  2. """
  3. Set the matplotlib backend to one of the known backends.
  4.  
  5. The argument is case-insensitive. *warn* specifies whether a
  6. warning should be issued if a backend has already been set up.
  7. *force* is an **experimental** flag that tells matplotlib to
  8. attempt to initialize a new backend by reloading the backend
  9. module.
  10.  
  11. .. note::
  12.  
  13. This function must be called *before* importing pyplot for
  14. the first time; or, if you are not using pyplot, it must be called
  15. before importing matplotlib.backends. If warn is True, a warning
  16. is issued if you try and call this after pylab or pyplot have been
  17. loaded. In certain black magic use cases, e.g.
  18. :func:`pyplot.switch_backend`, we are doing the reloading necessary to
  19. make the backend switch work (in some cases, e.g., pure image
  20. backends) so one can set warn=False to suppress the warnings.
  21.  
  22. To find out which backend is currently set, see
  23. :func:`matplotlib.get_backend`.
  24.  
  25. """
  26. # Lets determine the proper backend name first
  27. if arg.startswith('module://'):
  28. name = arg
  29. else:
  30. # Lowercase only non-module backend names (modules are case-sensitive)
  31. arg = arg.lower()
  32. name = validate_backend(arg)
  33.  
  34. # Check if we've already set up a backend
  35. if 'matplotlib.backends' in sys.modules:
  36. # Warn only if called with a different name
  37. if (rcParams['backend'] != name) and warn:
  38. warnings.warn(_use_error_msg)
  39.  
  40. # Unless we've been told to force it, just return
  41. if not force:
  42. return
  43. need_reload = True
  44. else:
  45. need_reload = False
  46.  
  47. # Store the backend name
  48. rcParams['backend'] = name
  49.  
  50. # If needed we reload here because a lot of setup code is triggered on
  51. # module import. See backends/__init__.py for more detail.
  52. if need_reload:
  53. reload(sys.modules['matplotlib.backends'])

参考:DISPLAY error matplotlib http://chewpichai.blogspot.com/2008/01/display-error-matplotlib.html 。原文可能被墙了,需要设法翻一下。

原文内容:

  1. DISPLAY error matplotlib
  2. When error occur about this "$DISPLAY not set" when you run python code that use matplotlib this happened because your matplotlib backend is set to FltkAgg, GTK, GTKAgg, GTKCairo, TkAgg , Wx or WxAgg they required a GUI that why error occur.
  3.  
  4. To solve this you must specific other backend that not required GUI (Agg, Cairo, PS, PDF or SVG) when use matplotlib like this

  5. In code
  6. import matplotlib
  7. matplotlib.use('Agg')

  8. In command line use -d option
  9. python subplot_demo.py -dAgg
  10.  
  11. Remember when call savefig('filename') don't give it extension this will handle by backend that you specific e.g Agg will create file filename.png
 

ssh调用matplotlib绘图报错RuntimeError: Invalid DISPLAY variable的更多相关文章

  1. matplotlib 绘图报错 RuntimeError: Invalid DISPLAY variable

    ssh 远程登录 Linux 服务器使用 matplotlib.pyplot 绘图时报错 原因: matplotlib 在 windows 下的默认 backend 是 TkAgg:在 Linux 下 ...

  2. [Python] RuntimeError: Invalid DISPLAY variable

    1.问题:在本地用matplotlib绘图可以,但是在ssh远程绘图的时候会报错 RuntimeError: Invalid DISPLAY variable 2.原因:matplotlib的默认ba ...

  3. 错误RuntimeError: Invalid DISPLAY variable

    原因:matplotlib的backend中的FltkAgg, GTK, GTKAgg, GTKCairo, TkAgg , Wx or WxAgg这几个backend都要求有GUI图形界面的 首先查 ...

  4. pylab,matplotlib Invalid DISPLAY variable

    在cetos 服务器使用源码包,安装matplotlib, 安装成功后, import pylab as pl pl.figure(figsize=(16,8)) python 解析器报错,Inval ...

  5. 安装tesserocr的步骤和报错RuntimeError: Failed to init API, possibly an invalid tessdata path解决办法

    1,首先下载合适的tesseract-ocr的版本 2,然后安装到这一步注意要勾选这一项来安装OCR识别支持的语言包,这样OCR就可以识别多国语言,然后就可以一直点击下一步完成安装. 3,安装tess ...

  6. c++中sort函数调用报错Expression : invalid operator <的内部原理 及解决办法

    转自:https://www.cnblogs.com/huoyao/p/4248925.html 当我们调用sort函数进行排序时,中的比较函数如果写成如下 bool cmp(const int &a ...

  7. c++中sort函数调用报错Expression : invalid operator <的内部原理

    当我们调用sort函数进行排序时,中的比较函数如果写成如下 bool cmp(const int &a, const int &b) { if(a!=b) return a<b; ...

  8. Jade报错:Invalid indentation,you can use tabs or spaces but not both问题

    现象:通过html生成jade文件之后,更改jade文件时,语句没什么问题的情况下,jade文件编译不通过,报错:Invalid indentation,you can use tabs or spa ...

  9. Django报错:提交表单报错---RuntimeError: You called this URL via POST, but the URL doesn’t end in a slash and you have APPEND_SLASH set.

    Django报错:提交表单报错---RuntimeError: You called this URL via POST, but the URL doesn’t end in a slash and ...

随机推荐

  1. crontab 设置服务器定期执行备份工作

    基本格式 : * * * * * command 分 时 日 月 周 命令 第1列表示分钟1-59 每分钟用*或者 */1表示 第2列表示小时1-23(0表示0点) 第3列表示日期1-31 第4列表示 ...

  2. Spring课程 Spring入门篇 5-4 advice应用(上)

    1 解析 1.1 通知执行顺序 2 代码演练 1 解析 1.1 通知执行顺序 aop执行方式为:前置通知==>所要增强的方法==>后置通知==>最终通知 在出现异常时会进行:前置通知 ...

  3. thinkphp更新数据库的时候where('')为字符串

    if($user->where('phone='.$phone)->save($dataList)){} if($user->where(array('phone' =>$ph ...

  4. 第9章 CSS3中的变形与动画(下)

    Keyframes介绍 Keyframes被称为关键帧,其类似于Flash中的关键帧.在CSS3中其主要以"@keyframes"开头,后面紧跟着是动画名称加上一对花括号" ...

  5. Csharp:WebClient and WebRequest use http download file

    //Csharp:WebClient and WebRequest use http download file //20140318 塗聚文收錄 string filePath = "20 ...

  6. C++教程|菜鸟教程

    https://www.runoob.com/cplusplus/cpp-tutorial.html 在线编辑器 http://www.runoob.com/try/runcode.php?filen ...

  7. vs生成的exe程序和相关dll打包

    原文:http://blog.csdn.net/yhhyhhyhhyhh/article/details/50782897   打包工具:Inno Setup 编译器  源文件 :vs生成的.exe和 ...

  8. Spring boot 使用WebAsyncTask处理异步任务

    上文介绍了基于 @Async 注解的 异步调用编程,本文将继续引入 Spring Boot 的 WebAsyncTask 进行更灵活异步任务处理,包括 异步回调,超时处理 和 异常处理. 正文 1. ...

  9. 获取当前时间CTime

    std::string getcurtime(){ USES_CONVERSION; CTime z_CurTime; CString z_TimeStr; z_CurTime = CTime::Ge ...

  10. 旋转数组的最小数字(C++ 和 Python 实现)

    (说明:本博客中的题目.题目详细说明及参考代码均摘自 “何海涛<剑指Offer:名企面试官精讲典型编程题>2012年”) 题目 把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的 ...