List of all available matplotlib backends

后端 未结 7 2149
情话喂你
情话喂你 2020-11-27 13:06

The current backend name is accessible via

>>> import matplotlib.pyplot as plt
>>> plt.get_backend()
\'GTKAgg\'

Is there a way to get a list of all ba

7条回答
  •  暖寄归人
    2020-11-27 13:24

    What about this?

    %matplotlib --list
    Available matplotlib backends: ['tk', 'gtk', 'gtk3', 'wx', 'qt4', 'qt5', 'qt', 'osx', 'nbagg', 'notebook', 'agg', 'svg', 'pdf', 'ps', 'inline', 'ipympl', 'widget']
    

提交回复
热议问题