matplotlib使用什么GUI库?

时间:2017-06-26 04:52:26

标签: python python-3.x user-interface matplotlib

出现matplotlib,我猜它正在使用PyQt;但是当我查看它的代码时,我根本没有发现它导入任何GUI库。那么,matplotlib究竟用什么来显示图形(例如,调用plt.show()时的窗口)?

1 个答案:

答案 0 :(得分:3)

您可以使用get_backend()方法判断哪个后端matplotlib正在使用:

matplotlib.get_backend()

您可以使用rcsetup.all_backends查看所有可用后端的列表:

matplotlib.rcsetup.all_backends